Skip to content

Commit

Permalink
update added testing action
Browse files Browse the repository at this point in the history
  • Loading branch information
ammichael committed Jul 14, 2020
1 parent ae96f9a commit b32d17c
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/testing.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: testing

on:
push:
branches: [master]

jobs:
testing:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Setup Node
uses: actions/setup-node@v1
with:
node-version: 13
registry-url: https://registry.npmjs.org/
- name: Install
run: npm install
- name: Build
run: npm run build
- name: Run jest tests
run: npm test
- uses: codecov/codecov-action@v1
with:
token: ${{ secrets.CODECOV_TOKEN }} #

0 comments on commit b32d17c

Please sign in to comment.