Skip to content

comments

comments #181

Workflow file for this run

name: Test
on:
push:
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/setup-node@v5
with:
node-version: '22'
- run: npm install
env:
# Engine build/test never use Electron (only examples/electron does),
# so skip its large binary download to avoid flaky CDN timeouts.
ELECTRON_SKIP_BINARY_DOWNLOAD: '1'
- run: npm run build
- run: npm test