Skip to content

Simplify and improve character preprocessing #190

Simplify and improve character preprocessing

Simplify and improve character preprocessing #190

Workflow file for this run

name: "Build"
on:
push:
branches:
- master
jobs:
build:
name: Build
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20]
steps:
- name: Checkout
uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
with:
version: 8
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: "pnpm"
- name: Install dependencies
run: pnpm install
- name: Build
run: pnpm build
env:
VUE_APP_PUBLIC_PATH: ${{secrets.VUE_APP_PUBLIC_PATH}}
VUE_APP_ASSETS_ENDPOINT: ${{secrets.VUE_APP_ASSETS_ENDPOINT}}
VUE_APP_SITE_NAME: Party Builder for Genshin Impact
VUE_APP_SITE_DESC: An AI-assisted party creation tool for Genshin Impact. It helps beginners to assemble well-rounded teams no matter how many or which characters they have.
- name: Archive production artifacts
uses: actions/upload-artifact@v3
with:
name: dist
path: dist