Files
Maribeth Moffatt 7682eeab29 chore: make ci more robust, fix stack overflow and import problem (#9948)
* chore: add additional logging to CI to catch circular deps and exit mocha on failure

* chore: fix blockly import

* chore: format

* chore: increase webdriver timeout to allow longer tests

* fix: stack overflow if a sound is missing

* chore: dont fail for any console errors

* chore: needs more timeout

* chore: run mocha in a subprocess

* chore: fix chromedriver cache issues

* chore: remove bad error condition
2026-05-29 11:53:07 -07:00

98 lines
2.1 KiB
YAML

# This workflow will do a clean install, start the selenium server, and run
# all of our tests.
name: Node.js CI
on:
pull_request:
workflow_call:
permissions:
contents: read
jobs:
build:
timeout-minutes: 10
runs-on: ${{ matrix.os }}
strategy:
matrix:
# TODO (#2114): re-enable osx build.
# os: [ubuntu-latest, macos-latest]
os: [ubuntu-latest]
node-version: [22.x, 24.x]
# See supported Node.js release schedule at
# https://nodejs.org/en/about/releases/
steps:
- uses: actions/checkout@v5
with:
ref: ${{ github.ref }}
persist-credentials: false
- name: Reconfigure git to use HTTP authentication
run: >
git config --global url."https://github.com/".insteadOf
ssh://git@github.com/
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v5
with:
node-version: ${{ matrix.node-version }}
- name: Npm Clean Install
run: npm ci
- name: Setup Chrome
if: runner.os == 'Linux'
uses: browser-actions/setup-chrome@v1
- name: Linux Test Setup
if: runner.os == 'Linux'
run: source ./tests/scripts/setup_linux_env.sh
working-directory: ./packages/blockly
- name: Run
run: npm run test
env:
CI: true
lint:
timeout-minutes: 5
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
with:
ref: ${{ github.ref }}
- name: Use Node.js 24.x
uses: actions/setup-node@v5
with:
node-version: 24.x
- name: Npm Install
run: npm install
- name: Lint
run: npm run lint
format:
timeout-minutes: 5
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
with:
ref: ${{ github.ref }}
- name: Use Node.js 24.x
uses: actions/setup-node@v5
with:
node-version: 24.x
- name: Npm Install
run: npm install
- name: Check Format
run: npm run format:check