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

22 lines
349 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
2023-04-30 10:50:12 +08:00
uses: actions/checkout@v3
2023-04-30 10:48:38 +08:00
- name: Install pnpm
run: |
npm install -g pnpm
- name: Install dependencies and build
run: |
pnpm i
pnpm build
ls -la