Skip to content

Create CODE_OF_CONDUCT.md #23

Create CODE_OF_CONDUCT.md

Create CODE_OF_CONDUCT.md #23

name: compile-and-runtime-test
on:
push:
branches:
- '**'
paths-ignore:
- 'README.md'
jobs:
doAll:
strategy:
matrix:
node-version: [16.x, 18.x, 20.x]
os: [ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: npm ci
- run: npm run build
- run: npm run test