Skip to content

Commit 90f6671

Browse files
committed
ci: run snapshots in verification jobs
TBH this isn't ideal. The only bottleneck in the build job is the snapshot step, moving it to the verification jobs defeats the purpose of having a separate build job. I'll fix it later by trying to use tar.
1 parent 67442c2 commit 90f6671

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,6 @@ jobs:
4242
name: build-output
4343
path: |
4444
outfile.cjs
45-
playground
4645
retention-days: 3
4746

4847
verify-scripts:
@@ -81,6 +80,8 @@ jobs:
8180

8281
- name: Install dependencies to avoid tsconfig warnings
8382
run: pnpm install
83+
- name: Snapshot
84+
run: pnpm snapshot
8485
- name: Install dependencies in playground
8586
working-directory: ./playground
8687
run: pnpm install --no-frozen-lockfile
@@ -118,6 +119,8 @@ jobs:
118119

119120
- name: Install dependencies to avoid tsconfig warnings
120121
run: pnpm install
122+
- name: Snapshot
123+
run: pnpm snapshot
121124
- name: Install dependencies in playground
122125
working-directory: ./playground
123126
run: pnpm install --no-frozen-lockfile

0 commit comments

Comments
 (0)