chore(deps): update dependency globals to v16 - autoclosed #323
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: QC Checks | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
checks: | |
name: QC Checks | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js 20 | |
uses: actions/setup-node@v4 | |
with: | |
node-version: "20" | |
- name: Install | |
run: npm install | |
- name: ESLint checks | |
run: npm run check-lint | |
- name: Prettier checks | |
run: npm run check-format | |
- name: TSC checks | |
run: npm run check-tsc | |
tests: | |
name: Tests Node.js ${{ matrix.node-version }} | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [20.x, 22.x] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Install system dependencies for Electron | |
run: npx playwright install-deps | |
- name: Install | |
run: npm install | |
- name: Run tests | |
run: xvfb-run --auto-servernum -- npx mocha |