Skip to content

dumganhar - test

dumganhar - test #12

Workflow file for this run

name: test
run-name: ${{ github.actor }} - test
on: [pull_request, push]
jobs:
test:
strategy:
fail-fast: false
matrix:
os: [windows-latest, macos-latest, ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '18.20.5'
- name: Build & Test
run: |
node --version
npm --version
npm install -g pnpm
pnpm --version
npm ci
npm test