Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,10 +47,12 @@ jobs:
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'pnpm'
cache-dependency-path: app/pnpm-lock.yaml

- name: Install dependencies
working-directory: app
run: pnpm install --no-frozen-lockfile
run: pnpm install --frozen-lockfile

- name: Typecheck
working-directory: app
Expand All @@ -71,10 +73,12 @@ jobs:
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'pnpm'
cache-dependency-path: sdks/typescript/pnpm-lock.yaml

- name: Install dependencies
working-directory: sdks/typescript
run: pnpm install --no-frozen-lockfile
run: pnpm install --frozen-lockfile

- name: Typecheck
working-directory: sdks/typescript
Expand Down
Loading
Loading