We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c765696 commit 3734dc5Copy full SHA for 3734dc5
1 file changed
.github/workflows/release.yml
@@ -4,7 +4,7 @@ on:
4
types: published
5
6
jobs:
7
- build:
+ release:
8
runs-on: ubuntu-latest
9
permissions:
10
contents: read
@@ -16,6 +16,7 @@ jobs:
16
uses: actions/setup-node@v4
17
with:
18
node-version: "20.x"
19
+ registry-url: "https://registry.npmjs.org"
20
- name: "Install dependencies"
21
run: npm install --no-save
22
- name: "Run eslint - linting"
@@ -24,6 +25,7 @@ jobs:
24
25
run: npm run check
26
- name: "Run unit tests"
27
run: npm test
28
+ - run: npm ci
29
- run: npm publish
30
env:
31
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
0 commit comments