We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c9e256e commit f6f2920Copy full SHA for f6f2920
.github/workflows/test.yml
@@ -0,0 +1,22 @@
1
+name: Tests
2
+
3
+on: [push]
4
5
+jobs:
6
+ test:
7
+ runs-on: ubuntu-latest
8
+ strategy:
9
+ matrix:
10
+ node-version: [16.x]
11
+ steps:
12
+ - uses: actions/checkout@v3
13
+ - uses: actions/setup-node@v3
14
+ with:
15
+ node-version: ${{ matrix.node-version }}
16
+ cache: npm
17
+ - name: install
18
+ run: npm install
19
20
+ - uses: mattallty/jest-github-action@v1
21
+ env:
22
+ GITHUB_TOKEN: ${{ secrets.ACTION_TOKEN }}
0 commit comments