We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 695cbf6 commit b2138a8Copy full SHA for b2138a8
.github/workflows/test-e2e-composable.yml
@@ -29,25 +29,18 @@ jobs:
29
- uses: actions/checkout@v4
30
31
- run: corepack enable
32
+
33
- uses: actions/setup-node@v4
34
with:
35
node-version: 23
36
cache: pnpm
- # - run: pnpm install
37
-
38
- - uses: actions/checkout@v4
39
40
- - name: Set up Cypress binary cache
41
- uses: actions/cache@v4
+ - uses: actions/cache@v4
42
43
path: ~/.cache/Cypress
44
- key: ${{ runner.os }}-cypress-${{ hashFiles('pnpm-lock.yaml') }}
+ key: cypress-${{ runner.os }}-${{ hashFiles('pnpm-lock.yaml') }}
45
46
- - name: Cypress install
47
- uses: cypress-io/github-action@v6
48
- with:
49
- # Disable running of tests within install job
50
- runTests: false
+ - run: pnpm install
51
52
- name: Build
53
run: pnpm run build
0 commit comments