8.1.4 #29
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 | |
- run: npm run build --if-present | |
- if: runner.os == 'Linux' | |
run: xvfb-run npm test | |
- if: runner.os != 'Linux' | |
run: npm test |