We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 360e809 commit 9fd6bfcCopy full SHA for 9fd6bfc
1 file changed
.github/workflows/publish.yml
@@ -15,15 +15,19 @@ jobs:
15
steps:
16
- name: Checkout repository
17
uses: actions/checkout@v4
18
-
+ with:
19
+ fetch-depth: 0 # Important to get full history for version detection
20
+
21
- name: Setup Node.js
22
uses: actions/setup-node@v3
23
with:
24
node-version: 18
25
registry-url: 'https://registry.npmjs.org'
26
27
- name: Install dependencies
- run: npm ci
28
+ run: |
29
+ npm install
30
+ npm audit fix --audit-level=moderate
31
32
- name: Run tests
33
run: npm test
0 commit comments