Skip to content

Commit

Permalink
Add GitHub Action for CI
Browse files Browse the repository at this point in the history
Migrating away from Travis CI because we [no longer get free builds :(](#222 (comment))
  • Loading branch information
rwalle61 committed Mar 6, 2021
1 parent 988e6de commit 3702417
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/blank.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: CI

on:
push:
branches:
- master
pull_request:
branches:
- master

workflow_dispatch:

jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2

- uses: actions/setup-node@v2.1.5
with:
node-version: 12

- run: yarn install

- run: yarn test:ci && bash <(curl -s https://codecov.io/bash)

0 comments on commit 3702417

Please sign in to comment.