Skip to content

Upgrade to react-scripts v5 #2552

Upgrade to react-scripts v5

Upgrade to react-scripts v5 #2552

Workflow file for this run

name: Lint, Test, and Build
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
env:
CI: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '16'
cache: 'yarn'
- name: Install dependencies with yarn
run: yarn install --frozen-lockfile
- name: Lint with eslint
run: yarn lint
- name: Test with jest
run: yarn test
- name: Build with TypeScript
run: yarn build