Yacd-meta/.gitea/workflows/build.yaml

22 lines
346 B
YAML
Raw Normal View History

2023-04-30 10:48:38 +08:00
name: Install pnpm and build
2023-04-30 10:21:13 +08:00
on: [push]
jobs:
build:
runs-on: ubuntu-latest
2023-04-30 10:48:38 +08:00
2023-04-30 10:21:13 +08:00
steps:
2023-04-30 10:48:38 +08:00
- name: Checkout the code
uses: actions/checkout
- name: Install pnpm
run: |
npm install -g pnpm
- name: Install dependencies and build
run: |
pnpm i
pnpm build
ls -la