Skip to content

chore: Enable release-please github action #69

chore: Enable release-please github action

chore: Enable release-please github action #69

Workflow file for this run

name: Tests
on: [push, pull_request]
env:
CI: true
jobs:
test:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
node-version: [18, 20]
runs-on: ${{matrix.os}}
steps:
- uses: actions/checkout@v2
- name: Node.js ${{matrix.node-version}} on ${{matrix.os}}
uses: actions/setup-node@v1
with:
node-version: ${{matrix.node-version}}
- run: npm install
- run: npm test