Skip to content

Commit 3edc9a5

Browse files
committed
fix it
1 parent 98a1b3a commit 3edc9a5

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -861,12 +861,12 @@ jobs:
861861

862862
- name: Determine which E2E test applications should be run
863863
id: matrix
864-
run: yarn --silent test:build-matrix --base=${{ github.event.pull_request.base.sha }} >> $GITHUB_OUTPUT
864+
run: yarn --silent ci:build-matrix --base=${{ github.event.pull_request.base.sha }} >> $GITHUB_OUTPUT
865865
working-directory: dev-packages/e2e-tests
866866

867867
- name: Determine which optional E2E test applications should be run
868868
id: matrix-optional
869-
run: yarn --silent test:build-matrix-optional --base=${{ github.event.pull_request.base.sha }} >> $GITHUB_OUTPUT
869+
run: yarn --silent ci:build-matrix-optional --base=${{ github.event.pull_request.base.sha }} >> $GITHUB_OUTPUT
870870
working-directory: dev-packages/e2e-tests
871871

872872
job_e2e_tests:

dev-packages/e2e-tests/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@
1414
"test:prepare": "ts-node prepare.ts",
1515
"test:validate": "run-s test:validate-configuration test:validate-test-app-setups",
1616
"clean": "rimraf tmp node_modules pnpm-lock.yaml && yarn clean:test-applications",
17-
"ci:build-matrix": "ts-node ./lib/ciBuildMatrix.ts",
18-
"ci:build-matrix-optional": "ts-node ./lib/ciBuildMatrix.ts --optional=true",
17+
"ci:build-matrix": "ts-node ./lib/getTestMatrix.ts",
18+
"ci:build-matrix-optional": "ts-node ./lib/getTestMatrix.ts --optional=true",
1919
"clean:test-applications": "rimraf --glob test-applications/**/{node_modules,dist,build,.next,.sveltekit,pnpm-lock.yaml} .last-run.json && pnpm store prune"
2020
},
2121
"devDependencies": {

0 commit comments

Comments
 (0)