We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5b7b9f6 commit e5d241dCopy full SHA for e5d241d
1 file changed
.github/workflows/test.yml
@@ -0,0 +1,12 @@
1
+name: Test
2
+on: [push, pull_request]
3
+jobs:
4
+ test:
5
+ runs-on: ubuntu-latest
6
+ steps:
7
+ - uses: actions/checkout@v2
8
+ - uses: actions/setup-node@v1
9
+ with:
10
+ node-version: 'latest'
11
+ - run: npm ci
12
+ - run: npm test
0 commit comments