Skip to content

Bump actions/checkout from 3 to 4 #462

Bump actions/checkout from 3 to 4

Bump actions/checkout from 3 to 4 #462

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@v4
- name: Setup Node.js
uses: actions/[email protected]
with:
node-version: 16
- run: npm ci
- run: npm test