Maintenance 2024 #370
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: Run tests | |
on: | |
workflow_dispatch: | |
push: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
run-tests: | |
name: Rebuild & Test | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: | |
- macos-latest | |
- windows-latest | |
- ubuntu-latest | |
node: | |
- 16 | |
- 22 | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Use Rust | |
uses: dtolnay/rust-toolchain@stable | |
with: | |
toolchain: stable | |
- name: Build for Metal | |
if: ${{ matrix.os == 'macos-latest' }} | |
run: | | |
npm ci --ignore-scripts | |
npm run build -- --release --features metal,window | |
- name: Build for Vulkan | |
if: ${{ matrix.os != 'macos-latest' }} | |
run: | | |
npm ci --ignore-scripts | |
npm run build -- --release --features vulkan,window | |
- name: Run tests | |
run: npm test |