Yacd-meta/.gitea/workflows/build.yaml
liyp 915156d045
All checks were successful
Install pnpm and build / build (push) Successful in 55s
change action 2
2023-04-30 10:50:12 +08:00

21 lines
349 B
YAML

name: Install pnpm and build
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout the code
uses: actions/checkout@v3
- name: Install pnpm
run: |
npm install -g pnpm
- name: Install dependencies and build
run: |
pnpm i
pnpm build
ls -la