Skip to content

chore(deps): Bump react and @types/react #1490

chore(deps): Bump react and @types/react

chore(deps): Bump react and @types/react #1490

Workflow file for this run

name: ci
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Cache node modules
uses: actions/cache@v3
with:
path: ~/.npm
key: npm-${{ hashFiles('**/package.json') }}
- uses: actions/setup-node@v3
with:
node-version-file: '.nvmrc'
- run: npm install
- run: npm run lint
- run: npm run test:coverage -- --silent
- run: npm run check-types
- run: npm run build
- uses: coverallsapp/[email protected]
with:
github-token: ${{ secrets.GITHUB_TOKEN }}