Skip to content

Bump vite-plugin-static-copy from 2.3.1 to 2.3.2 #159

Bump vite-plugin-static-copy from 2.3.1 to 2.3.2

Bump vite-plugin-static-copy from 2.3.1 to 2.3.2 #159

Workflow file for this run

name: CI
on:
push:
pull_request:
env:
EM_VERSION: 4.0.8
EM_CACHE_FOLDER: 'emsdk-cache'
jobs:
build:
name: WASM Build
runs-on: ubuntu-latest
steps:
- name: Checkout repository and submodules
uses: actions/checkout@v4
with:
submodules: recursive
fetch-tags: true
fetch-depth: 0
- name: Setup cache
uses: actions/cache@v4
with:
path: ${{env.EM_CACHE_FOLDER}}
key: ${{env.EM_VERSION}}-${{ runner.os }}
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '20.x'
- name: Setup emscripten
uses: mymindstorm/setup-emsdk@v14
with:
version: ${{env.EM_VERSION}}
actions-cache-folder: ${{env.EM_CACHE_FOLDER}}
- name: Build RGBDS
run: ./build-rgbds.sh
shell: bash
- name: Build binjgb
run: ./build-binjgb.sh
shell: bash
- name: Install node dependencies
run: npm ci
- name: Build with Vite
run: npm run build
- name: Deploy to GitHub Pages
# Do not run this unless *pushing* to `master`.
if: github.event_name == 'push' && github.ref == 'refs/heads/master'
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
# Build output to publish to the `gh-pages` branch:
publish_dir: ./www