Skip to content

CI: update target branch #3

CI: update target branch

CI: update target branch #3

Workflow file for this run

name: Code tests
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test-node:
strategy:
matrix:
node-version: [16.x, 18.x, '20']
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
name: Node ${{ matrix.node-version }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm run test