Skip to content

Fixes to Mac build flow. #115

Fixes to Mac build flow.

Fixes to Mac build flow. #115

Workflow file for this run

name: PR Build
on:
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ macos-latest, ubuntu-latest ]
steps:
- uses: actions/checkout@v6
- name: Use Node.js 24
uses: actions/setup-node@v6
with:
node-version: 24
cache: "npm"
- run: npm ci
- run: npm test
- name: Install rpm tools (Linux only)
if: matrix.os == 'ubuntu-latest'
run: sudo apt-get update && sudo apt-get install -y rpm
- run: npm run package