Skip to content

Bump jest from 29.6.1 to 29.6.2 #441

Bump jest from 29.6.1 to 29.6.2

Bump jest from 29.6.1 to 29.6.2 #441

Workflow file for this run

##
# Run unit test
##
name: Unit Test
on:
pull_request:
push:
branches:
- main
- feature/**
workflow_dispatch:
jobs:
# unit tests
unit:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ ubuntu-latest, windows-latest, macos-latest ]
fail-fast: false
steps:
- uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/[email protected]
with:
node-version: 16
- run: npm ci
- run: npm test