We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a7de146 commit 9dd5d77Copy full SHA for 9dd5d77
1 file changed
.github/workflows/cross-browser.yml
@@ -22,9 +22,7 @@ env:
22
NODE_VERSION: 22
23
24
jobs:
25
-
26
cross-browser:
27
28
name: ${{ matrix.browser }}
29
runs-on: ${{ matrix.os }}
30
timeout-minutes: 25
@@ -41,10 +39,13 @@ jobs:
41
39
with:
42
40
ref: ${{ github.event.pull_request.head.sha || github.ref }}
43
44
- - name: Build package
45
- uses: ./.github/actions/build
+ - name: Setup Node
+ uses: actions/setup-node@v6
46
47
- node: ${{ env.NODE_VERSION }}
+ node-version: ${{ env.NODE_VERSION }}
+
+ - name: Install dependencies
48
+ run: npm i --include=dev
49
50
- name: Run cross-browser tests
51
uses: cypress-io/github-action@v7
0 commit comments