Skip to content

Commit

Permalink
feat: added github workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
bashleigh committed May 11, 2021
1 parent adf0c6f commit 324237c
Show file tree
Hide file tree
Showing 2 changed files with 7,826 additions and 9 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Tests

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
workflow_dispatch:

jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: install
run: npm install --ignore-scripts
- name: build
run: npm run build
- name: tests
run: npm run test --coverage

Loading

0 comments on commit 324237c

Please sign in to comment.