Skip to content

Commit

Permalink
Add Github actions (#287)
Browse files Browse the repository at this point in the history
* Add Github actions

* Add on config for CI

* Filter push to just master
  • Loading branch information
palfrey authored Sep 7, 2023
1 parent 256a723 commit e9c9232
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 8 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
on:
push:
branches:
- master
pull_request:
branches:
- master

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
- run: npm ci
- run: npm test
8 changes: 0 additions & 8 deletions .travis.yml

This file was deleted.

0 comments on commit e9c9232

Please sign in to comment.