Skip to content

Bump jest from 29.5.0 to 29.6.3 #263

Bump jest from 29.5.0 to 29.6.3

Bump jest from 29.5.0 to 29.6.3 #263

Workflow file for this run

name: Tests
env:
FORCE_COLOR: true
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
build:
runs-on: ${{matrix.os}}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
node-version: [16.x]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm install
- name: Build lib
run: npm run build --if-present
- name: Run test
run: npm test