Skip to content

Commit

Permalink
Replace Travis with GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
nwalters512 committed Nov 14, 2024
1 parent 3749756 commit 6328c46
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 10 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Node.js CI

on: [push, pull_request]

jobs:
build:
runs-on: ubuntu-latest

strategy:
matrix:
node-version: ['18.x', '20.x', '22.x']

steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm run build
- run: npm run build:types
- run: npm run test
- run: npm run test:typescript
10 changes: 0 additions & 10 deletions .travis.yml

This file was deleted.

0 comments on commit 6328c46

Please sign in to comment.