Yacd-meta/.gitea/workflows/build.yaml
liyp 6afdc1b8e3
Some checks failed
Install pnpm and build / build (push) Failing after 1s
change action 1
2023-04-30 10:48:38 +08:00

21 lines
346 B
YAML

name: Install pnpm and build
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- 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