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 9f451d6 commit 27b2347Copy full SHA for 27b2347
.github/workflows/publish.yml
@@ -27,13 +27,18 @@ jobs:
27
runs-on: ubuntu-latest
28
steps:
29
- uses: actions/checkout@v3
30
+ - uses: actions/setup-node@v3
31
+ with:
32
+ node-version: 14
33
+ registry-url: https://registry.npmjs.org/
34
+ cache: npm
35
+ - run: npm ci
36
+ - run: npm test
37
- name: Setup GHPR
38
uses: actions/setup-node@v3
39
with:
40
node-version: 14
41
registry-url: 'https://npm.pkg.github.com'
- - run: npm ci
- - run: npm test
42
- run: npm version ${TAG_NAME} --git-tag-version=false
43
env:
44
TAG_NAME: 1.4.2
0 commit comments