Skip to content

chore(deps-dev): bump jest from 26.6.3 to 29.6.0 #713

chore(deps-dev): bump jest from 26.6.3 to 29.6.0

chore(deps-dev): bump jest from 26.6.3 to 29.6.0 #713

Workflow file for this run

name: Node CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x, 16.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: npm install, build, and test
run: |
yarn
yarn lint
yarn flow
yarn test
yarn test:coverage
yarn build
env:
CI: true
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}