Skip to content

Commit

Permalink
add github actions ci (#48)
Browse files Browse the repository at this point in the history
* add github actions ci

* update badges
  • Loading branch information
juliangruber committed Oct 5, 2023
1 parent 37fe34f commit dfbd94f
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 15 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node: ['16', '18', '20']
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- run: npm ci
- run: npm test
15 changes: 0 additions & 15 deletions .travis.yml

This file was deleted.

0 comments on commit dfbd94f

Please sign in to comment.