Skip to content

Change: Update dependencies #37

Change: Update dependencies

Change: Update dependencies #37

Workflow file for this run

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