File tree Expand file tree Collapse file tree 1 file changed +7
-6
lines changed
Expand file tree Collapse file tree 1 file changed +7
-6
lines changed Original file line number Diff line number Diff 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 :
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
You can’t perform that action at this time.
0 commit comments