[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
lauren committed
Jan 6, 2025 at 11:02 UTC
3ce77d55a205065714fcf4b0533a4ac6d009992b
1 file changed
+1
-5
.github/workflows/compiler_playground.yml
+1
-5
@@ -38,11 +38,7 @@ jobs:
38
with:
39
path: "**/node_modules"
40
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
42
- run: npx playwright install --with-deps chromium
43
- run: CI=true yarn test
44
- run: ls -R test-results