Skip to content

Commit

Permalink
replace travis setup with github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
jmsv committed Dec 10, 2023
1 parent 30fb647 commit 129ffd6
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 14 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Test

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

jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14, 16, 18, 20, 21, latest]

steps:
- uses: actions/checkout@v4
- name: setup node ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm run ci
14 changes: 0 additions & 14 deletions .travis.yml

This file was deleted.

0 comments on commit 129ffd6

Please sign in to comment.