Skip to content

Commit fcc58b4

Browse files
committed
cache
1 parent 2db4993 commit fcc58b4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/test-and-check.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ jobs:
128128
# We are running the package tests first be able to get early feedback on changes.
129129
# There is no point in running the fixtures if a package is broken.
130130
if: steps.changes.outputs.everything_but_markdown == 'true'
131-
run: pnpm run test:ci --log-order=stream --filter="./packages/*"
131+
run: pnpm run test:ci --log-order=stream --filter="./packages/*" --no-cache
132132
env:
133133
NODE_OPTIONS: "--max_old_space_size=8192"
134134
WRANGLER_LOG_PATH: ${{ runner.temp }}/wrangler-debug-logs/
@@ -138,7 +138,7 @@ jobs:
138138

139139
- name: Run tests (vite-plugin playgrounds)
140140
if: steps.changes.outputs.everything_but_markdown == 'true'
141-
run: pnpm run test:ci --log-order=stream --filter="@vite-plugin-cloudflare/playground"
141+
run: pnpm run test:ci --log-order=stream --filter="@vite-plugin-cloudflare/playground" --no-cache
142142
env:
143143
NODE_OPTIONS: "--max_old_space_size=8192"
144144
WRANGLER_LOG_PATH: ${{ runner.temp }}/wrangler-debug-logs/
@@ -149,7 +149,7 @@ jobs:
149149
- name: Run tests (fixtures)
150150
if: steps.changes.outputs.everything_but_markdown == 'true'
151151
# Browser rendering is disabled on Ubuntu because of https://pptr.dev/troubleshooting#issues-with-apparmor-on-ubuntu
152-
run: pnpm run test:ci --log-order=stream --filter="./fixtures/*" ${{ matrix.os == 'ubuntu-latest' && '--filter="!./fixtures/browser-rendering"' || '' }}
152+
run: pnpm run test:ci --log-order=stream --filter="./fixtures/*" ${{ matrix.os == 'ubuntu-latest' && '--filter="!./fixtures/browser-rendering"' || '' }} --no-cache
153153
env:
154154
NODE_OPTIONS: "--max_old_space_size=8192"
155155
WRANGLER_LOG_PATH: ${{ runner.temp }}/wrangler-debug-logs/

0 commit comments

Comments
 (0)