Skip to content

Commit 9dd5d77

Browse files
ci: remove redundant build step from cross-browser workflow
1 parent a7de146 commit 9dd5d77

1 file changed

Lines changed: 6 additions & 5 deletions

File tree

.github/workflows/cross-browser.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,7 @@ env:
2222
NODE_VERSION: 22
2323

2424
jobs:
25-
2625
cross-browser:
27-
2826
name: ${{ matrix.browser }}
2927
runs-on: ${{ matrix.os }}
3028
timeout-minutes: 25
@@ -41,10 +39,13 @@ jobs:
4139
with:
4240
ref: ${{ github.event.pull_request.head.sha || github.ref }}
4341

44-
- name: Build package
45-
uses: ./.github/actions/build
42+
- name: Setup Node
43+
uses: actions/setup-node@v6
4644
with:
47-
node: ${{ env.NODE_VERSION }}
45+
node-version: ${{ env.NODE_VERSION }}
46+
47+
- name: Install dependencies
48+
run: npm i --include=dev
4849

4950
- name: Run cross-browser tests
5051
uses: cypress-io/github-action@v7

0 commit comments

Comments
 (0)