Skip to content

Commit 3ce77d5

Browse files
authored
[playground:ci] Don't install compiler deps twice (#31995)
The compiler playground already installs the compiler's dependencies in a preinstall step. No need to repeat it in CI. --- [//]: # (BEGIN SAPLING FOOTER) Stack created with [Sapling](https://sapling-scm.com). Best reviewed with [ReviewStack](https://reviewstack.dev/facebook/react/pull/31995). * __->__ #31995 * #31994
1 parent 11df522 commit 3ce77d5

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

.github/workflows/compiler_playground.yml

+1-5
Original file line numberDiff line numberDiff line change
@@ -38,11 +38,7 @@ jobs:
3838
with:
3939
path: "**/node_modules"
4040
key: compiler-node_modules-${{ runner.arch }}-${{ runner.os }}-${{ hashFiles('compiler/**/yarn.lock') }}
41-
- name: yarn install compiler
42-
run: yarn install --frozen-lockfile
43-
working-directory: compiler
44-
- name: yarn install playground
45-
run: yarn install --frozen-lockfile
41+
- run: yarn install --frozen-lockfile
4642
- run: npx playwright install --with-deps chromium
4743
- run: CI=true yarn test
4844
- run: ls -R test-results

0 commit comments

Comments
 (0)