Skip to content

1725873141

1725873141 #415

# https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs
name: Node.js
on:
push:
branches: [ "master", "dev", "tmp" ]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
#os: [macos-latest, ubuntu-latest, windows-latest]
os: [macos-latest, ubuntu-latest]
node-version: ['13.x', '16.x', '20.x'] # min, dev, latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
- run: npm run install
- run: npm run test