Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,11 +44,11 @@ jobs:

- name: Link latest Blockly main
run: |
cd core-blockly
cd core-blockly/packages/blockly
npm run package
cd dist
npm link
cd ../../main
cd ../../../../main
npm link blockly
cd ..

Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ jobs:
run: |
cd blockly
npm ci
cd packages/blockly
npm run package
cd dist
npm link
Expand All @@ -77,10 +78,11 @@ jobs:

- name: Build add-screen-reader-support-experimental core Blockly
run: |
cd blockly/dist
cd blockly/packages/blockly/dist
npm unlink -g
cd ../../blockly-add-screen-reader-support-experimental
cd ../../../../blockly-add-screen-reader-support-experimental
npm ci
cd packages/blockly
npm run package
cd dist
npm link
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,11 +52,11 @@ jobs:

- name: Link latest Blockly main
run: |
cd core-blockly
cd core-blockly/packages/blockly
npm run package
cd dist
npm link
cd ../../main
cd ../../../../main
npm link blockly
cd ..

Expand Down
Loading