Skip to content

0.2.6

0.2.6 #41

Workflow file for this run

name: Test Node.js package
on: push
jobs:
build:
strategy:
matrix:
version: [18, 20, 21]
runs-on: ubuntu-latest
steps:
- name: Checkout the code
uses: actions/checkout@v3
- name: Setup Node v20
uses: actions/setup-node@v3
with:
node-version: 20
registry-url: https://registry.npmjs.org/
- name: Install dependencies
run: npm ci
- name: Run tests
run: npm test
- name: Build TypeScript files
run: npm run build