Skip to content

Node 3712 common parsing #114

Node 3712 common parsing

Node 3712 common parsing #114

Workflow file for this run

name: on-new-code
on:
push:
branches:
- main
pull_request:
branches: '*'
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
node-version: [18, 20, 22]
name: Test on ${{ matrix.os }} with node v${{ matrix.node-version }}
steps:
- name: Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
check-latest: true
- name: Checkout repository
uses: actions/checkout@v4
- name: Install dependencies
run: npm install
- name: Run tests
run: npm test