Skip to content

Edit game instructons #73

Edit game instructons

Edit game instructons #73

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@v4
- name: Use Node.js 24
uses: actions/setup-node@v4
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