Skip to content

Commit d2872e5

Browse files
committed
Add pull request check
1 parent 7d5e308 commit d2872e5

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

.github/workflows/check.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
on:
2+
[pull_request]
3+
4+
name: Check
5+
6+
jobs:
7+
check:
8+
name: Run Unit Tests
9+
runs-on: ubuntu-latest
10+
steps:
11+
- name: Checkout
12+
uses: actions/[email protected]
13+
- name: Run tests
14+
run: |
15+
npm ci
16+
npm test

0 commit comments

Comments
 (0)