test action 1

This commit is contained in:
liyp 2023-04-30 10:21:13 +08:00
parent a469f45e26
commit b658f11737

24
.github/workflows/build.yaml vendored Normal file
View file

@ -0,0 +1,24 @@
name: Deploy
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout Dashboard code
uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
with:
version: latest
- name: Setup Nodejs
uses: actions/setup-node@v3
with:
node-version: '18.x'
cache: pnpm
- name: Install package and build
run: |
pnpm install --no-frozen-lockfile
pnpm build
run: ls -la