Skip to content

Update dependencies to React 18, Node 20, TS 5.2, etc. (#5528) #3703

Update dependencies to React 18, Node 20, TS 5.2, etc. (#5528)

Update dependencies to React 18, Node 20, TS 5.2, etc. (#5528) #3703

Workflow file for this run

name: CI
on:
- push
- pull_request
permissions:
contents: read # to fetch code (actions/checkout)
jobs:
ci:
name: ${{ matrix.command }}
runs-on: ubuntu-latest
strategy:
matrix:
command:
- 'test'
- 'test:integration'
- 'lint:eslint'
- 'lint:prettier'
- 'lint:typescript'
steps:
- name: Checkout repo
uses: actions/checkout@v2
- name: Setup node
uses: actions/setup-node@v2
with:
node-version: 20.x
cache: yarn
key: node20
- name: Run ${{ matrix.command }}
run: yarn && yarn build && yarn ${{ matrix.command }}
env:
CI: true