Skip to content

Bump word-wrap from 1.2.3 to 1.2.4 #320

Bump word-wrap from 1.2.3 to 1.2.4

Bump word-wrap from 1.2.3 to 1.2.4 #320

Workflow file for this run

on:
push:
branches-ignore:
- master
env:
NODE_VERSION: '16.x' # set this to the node version to use
jobs:
build-and-deploy:
name: Build and Deploy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ env.NODE_VERSION }}
uses: actions/setup-node@v1
with:
node-version: ${{ env.NODE_VERSION }}
- name: Make envfile
uses: SpicyPizza/create-envfile@v1
with:
envkey_REACT_APP_API_URL: ${{ secrets.API_URL_STAGING }}
envkey_REACT_APP_PARTIO_API_URL: ${{ secrets.PARTIO_API_URL_STAGING }}
envkey_REACT_APP_SENTRY_DNS: ${{ secrets.SENTRY_DNS }}
- name: yarn install, build, and test
run: |
yarn
yarn build
yarn test