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 2126fc9 commit 82ae17dCopy full SHA for 82ae17d
.github/workflows/publish.yml
@@ -0,0 +1,20 @@
1
+on:
2
+ push:
3
+ tags:
4
+ - '*'
5
+
6
+jobs:
7
+ publish:
8
+ runs-on: ubuntu-latest
9
+ steps:
10
+ - uses: actions/checkout@v1
11
+ - uses: actions/setup-node@v1
12
+ with:
13
+ node-version: 14.x
14
15
+ - run: npm install
16
+ - run: npm test
17
+ - uses: JS-DevTools/npm-publish@v1
18
19
+ token: ${{ secrets.NPM_TOKEN }}
20
+ access: public
.github/workflows/test.yml
@@ -8,7 +8,7 @@ jobs:
strategy:
matrix:
node-version:
- - 14.15.4
+ - 14.x
- 16.x
steps:
- uses: actions/checkout@v2
0 commit comments