Skip to content

Add npm funding link (buymeacoffee/vsits) #25

Add npm funding link (buymeacoffee/vsits)

Add npm funding link (buymeacoffee/vsits) #25

Workflow file for this run

name: Test
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node: [18, 20, 22]
fail-fast: false
steps:
- uses: actions/checkout@v4
- name: Setup Node.js ${{ matrix.node }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- name: Syntax check
run: node --check preload.mjs
- name: Run tests
run: npm test