Skip to content

Remove Travis CI, add GitHub Actions, update to main branch #1

Remove Travis CI, add GitHub Actions, update to main branch

Remove Travis CI, add GitHub Actions, update to main branch #1

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
name: Test on Node.js ${{ matrix.node-version }}
runs-on: ubuntu-latest
strategy:
matrix:
node-version: ['8', '18', '20', '22']
fail-fast: false
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Run Tests
run: node test/test