Skip to content

Add themed gear events with gold & XP bonuses #5295

Add themed gear events with gold & XP bonuses

Add themed gear events with gold & XP bonuses #5295

Workflow file for this run

name: WebUI
on:
push:
paths:
- 'src/WebUI/**'
- '.github/workflows/webui.yml'
pull_request:
paths:
- 'src/WebUI/**'
- '.github/workflows/webui.yml'
jobs:
build:
runs-on: ubuntu-latest
env:
dir: ./src/WebUI
steps:
- uses: actions/checkout@v5
- uses: actions/setup-node@v5
with:
node-version: '24.x'
cache: 'npm'
cache-dependency-path: '${{ env.dir }}/package-lock.json'
- name: Install
run: npm ci
working-directory: ${{env.dir}}
- name: Lint
run: npm run lint
working-directory: ${{env.dir}}
- name: Typecheck
run: npm run typecheck
working-directory: ${{env.dir}}
- name: Unit
run: npm run test:unit
working-directory: ${{env.dir}}
- name: Build
run: npm run build
working-directory: ${{env.dir}}