Skip to content

Commit

Permalink
Switch from Travis CI to Github Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
curiousdannii committed Feb 11, 2021
1 parent 23bcfc2 commit 89b4c29
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 9 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: build-and-test

on: [push, pull_request]

jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
submodules: true
- uses: actions/setup-node@v2
with:
node-version: '14'
- run: npm install
- run: npm run lint
- run: npm test
9 changes: 0 additions & 9 deletions .travis.yml

This file was deleted.

0 comments on commit 89b4c29

Please sign in to comment.