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 9047e29 commit 9a8019cCopy full SHA for 9a8019c
.github/workflows/test.yml
@@ -0,0 +1,29 @@
1
+name: Test
2
+on:
3
+ push:
4
+ branches:
5
+ - main
6
+ pull_request:
7
+jobs:
8
+ test:
9
+ runs-on: ubuntu-latest
10
+ steps:
11
+ - name: Checkout 🍔🍟🥤
12
+ uses: actions/checkout@v2.5.0
13
+ with:
14
+ persist-credentials: false
15
+
16
+ - name: Use Node.js 😂
17
+ uses: actions/setup-node@v3
18
19
+ node-version: 16
20
21
+ - name: Test 🧪
22
+ run: |
23
+ npm ci
24
+ npm run check-ci
25
26
+ - name: Publish to NPM
27
+ uses: JS-DevTools/npm-publish@v1
28
29
+ token: ${{ secrets.NPM_TOKEN }}
0 commit comments