Skip to content

fix: update test workflow #23

fix: update test workflow

fix: update test workflow #23

Workflow file for this run

name: Test
on: push
jobs:
test:
name: Test
timeout-minutes: 30
continue-on-error: true
strategy:
matrix:
os: [windows-latest, ubuntu-latest]
version: ['18.x','19.x','20.x']
runs-on: ${{ matrix.os }}
steps:
- name: Checkout to code
uses: actions/checkout@v4
- name: install Node js Version ${{ matrix.version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.version }}
- name: install dependency
run: npm install
- name: Run test
run: npm run test