mirror of
https://github.com/isledecomp/isle.pizza.git
synced 2026-02-28 05:47:39 +00:00
- Skip service worker registration when running in dev mode to avoid 404 errors - Add isle.js and isle.wasm copy step to production build - Add build:ci script for CI builds without required wasm files
30 lines
475 B
YAML
30 lines
475 B
YAML
name: Build
|
|
|
|
on:
|
|
push:
|
|
branches: [master]
|
|
pull_request:
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Setup Node.js
|
|
uses: actions/setup-node@v4
|
|
with:
|
|
node-version: '20'
|
|
cache: 'npm'
|
|
|
|
- name: Install dependencies
|
|
run: npm ci
|
|
|
|
- name: Check for warnings
|
|
run: npm run check
|
|
|
|
- name: Build
|
|
run: npm run build:ci
|