Skip to content

Commit a3ac5f6

Browse files
committed
fix: Use correct core branch for CI builds, too.
1 parent 381c1f7 commit a3ac5f6

File tree

1 file changed

+4
-24
lines changed

1 file changed

+4
-24
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@ on:
66
pull_request:
77
push:
88
branches:
9-
- main
9+
- add-screen-reader-support-experimental
1010

1111
permissions:
1212
contents: read
1313

1414
jobs:
1515
build_tip_of_tree_v12:
16-
name: Build test (against tip-of-tree core develop)
16+
name: Build test (against add-screen-reader-support-experimental core develop)
1717
runs-on: ubuntu-latest
1818
steps:
1919
- name: Checkout experimentation plugin
@@ -25,7 +25,7 @@ jobs:
2525
uses: actions/checkout@v4
2626
with:
2727
repository: 'google/blockly'
28-
ref: 'develop'
28+
ref: 'add-screen-reader-support-experimental'
2929
path: core-blockly
3030

3131
- name: Use Node.js 20.x
@@ -42,7 +42,7 @@ jobs:
4242
npm install
4343
cd ..
4444
45-
- name: Link latest Blockly develop
45+
- name: Link latest Blockly add-screen-reader-support-experimental
4646
run: |
4747
cd core-blockly
4848
npm run package
@@ -57,26 +57,6 @@ jobs:
5757
cd main
5858
npm run build
5959
60-
build:
61-
name: Build test (against pinned v12)
62-
# Don't run pinned version checks for PRs.
63-
if: ${{ !github.base_ref }}
64-
runs-on: ubuntu-latest
65-
steps:
66-
- name: Checkout experimentation plugin
67-
uses: actions/checkout@v4
68-
69-
- name: Use Node.js 20.x
70-
uses: actions/setup-node@v4
71-
with:
72-
node-version: 20.x
73-
74-
- name: NPM install
75-
run: npm install
76-
77-
- name: Verify build
78-
run: npm run build
79-
8060
lint:
8161
name: Eslint check
8262
timeout-minutes: 5

0 commit comments

Comments
 (0)