Skip to content

Reorganise home page components #18

Reorganise home page components

Reorganise home page components #18

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_API_BASE: ${{vars.VUE_APP_API_BASE}}
VUE_APP_PUBLIC_PATH: ${{vars.VUE_APP_PUBLIC_PATH}}
- name: Archive production artifacts
uses: actions/upload-artifact@v3
with:
name: dist
path: dist