mirror of
https://github.com/google/blockly.git
synced 2026-01-07 00:50:27 +01:00
Bumps [actions/setup-node](https://github.com/actions/setup-node) from 4 to 5. - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](https://github.com/actions/setup-node/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/setup-node dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
67 lines
1.4 KiB
YAML
67 lines
1.4 KiB
YAML
# Workflow for running the keyboard navigation plugin's automated tests.
|
|
|
|
name: Keyboard Navigation Automated Tests
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
pull_request:
|
|
push:
|
|
branches:
|
|
- develop
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
webdriverio_tests:
|
|
name: WebdriverIO tests
|
|
timeout-minutes: 10
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
os: [ubuntu-latest, macos-latest]
|
|
|
|
steps:
|
|
- name: Checkout core Blockly
|
|
uses: actions/checkout@v5
|
|
with:
|
|
path: core-blockly
|
|
|
|
- name: Checkout keyboard navigation plugin
|
|
uses: actions/checkout@v5
|
|
with:
|
|
repository: 'google/blockly-keyboard-experimentation'
|
|
ref: 'main'
|
|
path: blockly-keyboard-experimentation
|
|
|
|
- name: Use Node.js 20.x
|
|
uses: actions/setup-node@v5
|
|
with:
|
|
node-version: 20.x
|
|
|
|
- name: NPM install
|
|
run: |
|
|
cd core-blockly
|
|
npm install
|
|
cd ..
|
|
cd blockly-keyboard-experimentation
|
|
npm install
|
|
cd ..
|
|
|
|
- name: Link latest core develop with plugin
|
|
run: |
|
|
cd core-blockly
|
|
npm run package
|
|
cd dist
|
|
npm link
|
|
cd ../../blockly-keyboard-experimentation
|
|
npm link blockly
|
|
cd ..
|
|
|
|
- name: Run keyboard navigation plugin tests
|
|
run: |
|
|
cd blockly-keyboard-experimentation
|
|
npm run test
|