Skip to content

chore(deps-dev): bump jest and @types/jest #576

chore(deps-dev): bump jest and @types/jest

chore(deps-dev): bump jest and @types/jest #576

Workflow file for this run

name: Node CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
env:
CI: true
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '18'
cache: 'npm'
- run: npm ci
- run: npm test
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: ['10.12', 12, 14, 16, 18]
name: build on node ${{ matrix.node-version }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm run build