Skip to content

chore: Upgrade GitHub actions #11

chore: Upgrade GitHub actions

chore: Upgrade GitHub actions #11

Workflow file for this run

name: Build/test
on:
push:
branches:
- main
pull_request:
branches:
- "**"
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: true
matrix:
os: [macos-latest, ubuntu-latest]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: latest
- run: npm install
- run: npm test