Skip to content

Commit 3d94933

Browse files
authored
monorepo: attempt to fix no compile ci (#4026)
1 parent 6a2ccd6 commit 3d94933

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

.github/workflows/noCompile.yml

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,16 +21,17 @@ jobs:
2121
# Set default values for cache keys when triggered by push
2222
env:
2323
DEP_CACHE_KEY: ${{ github.event_name == 'push' && 'none' || inputs.dep-cache-key }}
24-
24+
2525
steps:
26+
- uses: actions/checkout@v4
2627
# We restore the code/deps from cache if triggered from workflow_call (i.e. have valid cache key)
27-
- if: env.DEP_CACHE_KEY != 'none'
28+
- if: env.DEP_CACHE_KEY != 'none'
2829
uses: actions/cache/restore@v4
2930
id: dep-cache
3031
with:
3132
path: ${{github.workspace}}
3233
key: ${{ env.DEP_CACHE_KEY }}
33-
34+
3435
- name: Use Node.js 22
3536
uses: actions/setup-node@v4
3637
with:
@@ -39,8 +40,8 @@ jobs:
3940

4041
- name: Install Dependencies (if not restored from cache)
4142
if: steps.dep-cache.outputs.cache-hit != 'true'
42-
run: npm i --ignore-scripts
43+
run: npm i --ignore-scripts
4344
working-directory: ${{ github.workspace }}
44-
45+
4546
- run: node --conditions=typescript --experimental-strip-types scripts/inlineClient.ts
46-
working-directory: ${{ github.workspace }}/packages/client
47+
working-directory: ${{ github.workspace }}/packages/client

0 commit comments

Comments
 (0)