We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6adf425 commit 1411681Copy full SHA for 1411681
1 file changed
.github/workflows/publish.yaml
@@ -10,8 +10,12 @@ jobs:
10
run:
11
working-directory: crates/string-offsets/js
12
steps:
13
- - uses: actions/checkout@v3
14
- - uses: actions/setup-node@v3
+ - uses: actions/checkout@v4
+ - name: Copy lock file to root for dependency scanning
15
+ run: |
16
+ cp crates/string-offsets/js/package-lock.json ${GITHUB_WORKSPACE}/package-lock.json
17
+ working-directory: .
18
+ - uses: actions/setup-node@v4
19
with:
20
node-version: 22
21
registry-url: https://registry.npmjs.org/
0 commit comments