Skip to content
This repository has been archived by the owner on Oct 15, 2024. It is now read-only.

chore(deps): bump jest to latest #295

chore(deps): bump jest to latest

chore(deps): bump jest to latest #295

Workflow file for this run

name: any-pr
on: [pull_request]
jobs:
build_test:
name: Build test
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x, 16.x, 18.x]
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Run tests
run: |
yarn install --frozen-lockfile
yarn lint
yarn license:check
yarn build
yarn test:node --coverage
yarn test:wasm --coverage
# skip node-version 10 but including on node-version list due to a github actions issue
if: matrix.node-version != '10.x'