We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2f979a5 commit bd0e808Copy full SHA for bd0e808
.github/workflows/tests.yaml
@@ -0,0 +1,21 @@
1
+name: tests
2
+on: [push, pull_request]
3
+
4
+jobs:
5
+ testing:
6
+ runs-on: ubuntu-latest
7
+ steps:
8
+ - uses: actions/checkout@v1
9
+ - name: Setup Environment (Using NodeJS 16.x)
10
+ uses: actions/setup-node@v1
11
+ with:
12
+ node-version: 16.x
13
14
+ - name: Install dependencies
15
+ run: npm install
16
17
+ - name: Linting
18
+ run: npx standard
19
20
+ - name: Run tests
21
+ run: npm run test
0 commit comments