Update dependency chai to v4.5.0 #113
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test | |
on: | |
push: | |
branches: | |
- 'master' | |
pull_request: {} | |
jobs: | |
build: | |
name: Build, lint, and test | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node: ['12', '14', '16'] | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v2 | |
- name: Use Node ${{ matrix.node }} | |
uses: actions/setup-node@v1 | |
with: | |
node-version: ${{ matrix.node }} | |
- name: Install deps and build (with cache) | |
uses: borales/[email protected] | |
with: | |
cmd: install --immutable --silent | |
- name: Check types | |
uses: borales/[email protected] | |
with: | |
cmd: typecheck | |
- name: Build | |
uses: borales/[email protected] | |
with: | |
cmd: build | |
- name: Jest run | |
uses: borales/[email protected] | |
with: | |
cmd: test |