Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 32 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: CI

on:
push:
branches: ['*']
pull_request:
branches: [main]

jobs:
test:
name: Run tests (Node.js ${{ matrix.node }})
runs-on: ubuntu-latest
strategy:
matrix:
node: [18, 20, 22]

steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}

- name: Install dependencies
run: npm ci

- name: Run tests
run: npm run test
5 changes: 0 additions & 5 deletions .travis.yml

This file was deleted.

Loading