Skip to content

Bump @types/react-dom from 16.9.8 to 18.2.24 in /example #651

Bump @types/react-dom from 16.9.8 to 18.2.24 in /example

Bump @types/react-dom from 16.9.8 to 18.2.24 in /example #651

Workflow file for this run

name: Build
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Node
uses: actions/setup-node@v1
with:
node-version: 12
- name: Cache
uses: actions/cache@v2
with:
path: node_modules
key: nodeModules-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
nodeModules-
- name: Dependencies
run: yarn install --frozen-lockfile
- name: Typecheck
run: yarn tsc --noEmit -p .
- name: Lint
run: yarn lint
- name: Test
run: yarn test --ci --coverage