Skip to content

Commit 381c1f7

Browse files
committed
fix: Link against correct core branch for CI.
1 parent 82dfb0c commit 381c1f7

File tree

1 file changed

+6
-33
lines changed

1 file changed

+6
-33
lines changed

.github/workflows/test.yml

Lines changed: 6 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@ on:
77
pull_request:
88
push:
99
branches:
10-
- main
10+
- add-screen-reader-support-experimental
1111

1212
permissions:
1313
contents: read
1414

1515
jobs:
16-
webdriverio_tests_tip_of_tree_v12:
17-
name: WebdriverIO tests (against tip-of-tree core develop)
16+
webdriverio_tests:
17+
name: WebdriverIO tests (against add-screen-reader-support-experimental core develop)
1818
timeout-minutes: 10
1919
runs-on: ${{ matrix.os }}
2020

@@ -29,11 +29,11 @@ jobs:
2929
with:
3030
path: main
3131

32-
- name: Checkout core Blockly
32+
- name: Checkout experimentation Blockly
3333
uses: actions/checkout@v4
3434
with:
3535
repository: 'google/blockly'
36-
ref: 'develop'
36+
ref: 'add-screen-reader-support-experimental'
3737
path: core-blockly
3838

3939
- name: Use Node.js 20.x
@@ -50,7 +50,7 @@ jobs:
5050
npm install
5151
cd ..
5252
53-
- name: Link latest Blockly develop
53+
- name: Link latest Blockly add-screen-reader-support-experimental
5454
run: |
5555
cd core-blockly
5656
npm run package
@@ -64,30 +64,3 @@ jobs:
6464
run: |
6565
cd main
6666
npm run test
67-
68-
webdriverio_tests:
69-
name: WebdriverIO tests (against pinned v12)
70-
# Don't run pinned version checks for PRs.
71-
if: ${{ !github.base_ref }}
72-
timeout-minutes: 10
73-
runs-on: ${{ matrix.os }}
74-
75-
strategy:
76-
fail-fast: false
77-
matrix:
78-
os: [ubuntu-latest, macos-latest]
79-
80-
steps:
81-
- name: Checkout experimentation plugin
82-
uses: actions/checkout@v4
83-
84-
- name: Use Node.js 20.x
85-
uses: actions/setup-node@v4
86-
with:
87-
node-version: 20.x
88-
89-
- name: NPM install
90-
run: npm install
91-
92-
- name: Run tests
93-
run: npm run test

0 commit comments

Comments
 (0)