From 93a1e776a1350ff9b995e0df59c1abf64a325050 Mon Sep 17 00:00:00 2001 From: guangenZhao Date: Fri, 13 Mar 2026 18:36:27 +0800 Subject: [PATCH] =?UTF-8?q?=E7=AE=80=E5=8C=96=20workflow?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitea/workflows/build.yml | 22 ++++++---------------- 1 file changed, 6 insertions(+), 16 deletions(-) diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index f6dc803..50ce33d 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -1,4 +1,4 @@ -name: Build Portal +name: Runner Smoke Test on: push: @@ -6,23 +6,13 @@ on: - main jobs: - build: + test-runner: runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v4 - - - name: Show versions + - name: Show environment run: | + echo "runner is alive" node -v npm -v - - - name: Install dependencies - run: npm install - - - name: Build project - run: npm run build - - - name: List dist files - run: ls -la dist \ No newline at end of file + corepack enable + pnpm -v \ No newline at end of file