Skip to content

Commit

Permalink
Merge pull request #164 from camilaagw/Add-tests-on-github-actions
Browse files Browse the repository at this point in the history
Add tests on Github actions
  • Loading branch information
nicolasstucki authored Dec 10, 2020
2 parents 712cea0 + 157b0ce commit 933611f
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/continuos-integration.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: continuos-integration

on: [push, pull_request]

jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
- run: yarn
- run: yarn build
- run: yarn test

0 comments on commit 933611f

Please sign in to comment.