File tree Expand file tree Collapse file tree 1 file changed +8
-3
lines changed Expand file tree Collapse file tree 1 file changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -20,14 +20,19 @@ runs:
20
20
key : ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
21
21
restore-keys : |
22
22
${{ runner.os }}-pnpm-store-
23
- - name : Install dependencies
23
+ - name : Install dependencies with ignore-scripts
24
24
shell : bash
25
- run : pnpm install --frozen-lockfile
25
+ run : pnpm install --frozen-lockfile --ignore-scripts
26
+
26
27
- name : Build packages
27
28
shell : bash
28
29
run : pnpm build:packages
29
30
30
- - name : Make translate-docs executable
31
+ - name : Link binaries and make executable
31
32
shell : bash
32
33
run : |
34
+ pnpm rebuild --ignore-scripts
33
35
chmod +x ./packages/translate/dist/index.js
36
+ echo "Verifying translate-docs binary exists"
37
+ ls -la ./node_modules/.bin/translate-docs || true
38
+ ls -la ./packages/translate/dist/index.js || true
You can’t perform that action at this time.
0 commit comments