Skip to content

Commit

Permalink
Adds GitHub Actions CI, removes .travis.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
mattxwang committed Jun 24, 2024
1 parent c57d89e commit 9994802
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 9 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: CI

on:
push:
workflow_dispatch:

jobs:
test:
strategy:
matrix:
node-version: [18.x, 20.x, 22.x]
os: [ ubuntu-latest, macos-latest, windows-latest ]

runs-on: ${{ matrix.os }}

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 install
- run: npm test
9 changes: 0 additions & 9 deletions .travis.yml

This file was deleted.

0 comments on commit 9994802

Please sign in to comment.