min/max #22
This file contains hidden or 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: CI | |
| on: | |
| push: | |
| branches: [ master ] | |
| pull_request: | |
| branches: [ master ] | |
| jobs: | |
| test: | |
| runs-on: ${{ matrix.os }} | |
| timeout-minutes: 10 | |
| strategy: | |
| matrix: | |
| os: | |
| - ubuntu-latest | |
| - windows-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| with: | |
| submodules: recursive | |
| - name: Install LLVM | |
| uses: KyleMayes/install-llvm-action@v2 | |
| with: | |
| version: "20" | |
| - name: Use Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 24.9 | |
| cache: 'npm' | |
| - uses: bytecodealliance/actions/wasm-tools/setup@v1 | |
| - uses: bytecodealliance/actions/wasmtime/setup@v1 | |
| - name: Install dependencies | |
| run: npm ci && npx playwright install chromium | |
| - name: Check and compile | |
| run: npm run build | |
| - name: Run tests | |
| run: npm test |