Remove some redundant GL validation. #48
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
# https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs | |
name: ci | |
on: | |
push: | |
# branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
ci: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
node-version: [18.x, 20.x, 22.x] | |
os: [ubuntu-latest, windows-latest, macos-latest] | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: 'npm' | |
- if: runner.os == 'Linux' | |
run: sudo apt-get install -y build-essential libgl1-mesa-dri libglapi-mesa | |
libglew-dev libglu1-mesa-dev libosmesa6 | |
libxi-dev mesa-utils pkg-config | |
- run: npm ci | |
env: | |
npm_config_build_from_source: true | |
# npm_config_build_from_source is used to force npm post install scripts to build native modules from source instead of downloading prebuilt binaries. | |
- run: npm run build --if-present | |
- if: runner.os == 'Linux' | |
run: xvfb-run glxinfo | |
- if: runner.os == 'Linux' | |
run: xvfb-run npm test | |
- if: runner.os != 'Linux' | |
run: npm test |