Merge pull request #474 from Almenon/fix_silent_err #85
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
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
strategy: | |
matrix: | |
os: [ubuntu-latest, windows-latest, macos-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install Node.js | |
uses: actions/[email protected] | |
with: | |
node-version: 20 | |
- run: npm ci | |
- run: npm run vscode:prepublish | |
- run: npm run unitTests | |
- name: Run tests | |
uses: coactions/setup-xvfb@main | |
with: | |
run: npm test |