From 1f3c8f1acdaad4715e204732339c56f4231549a1 Mon Sep 17 00:00:00 2001 From: guangenZhao Date: Fri, 13 Mar 2026 18:38:38 +0800 Subject: [PATCH] =?UTF-8?q?workflow=20=E6=B7=BB=E5=8A=A0actions/checkout@v?= =?UTF-8?q?4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitea/workflows/build.yml | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index 50ce33d..1542467 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -1,4 +1,4 @@ -name: Runner Smoke Test +name: Checkout Test on: push: @@ -6,13 +6,14 @@ on: - main jobs: - test-runner: + checkout-test: runs-on: ubuntu-latest + steps: - - name: Show environment + - name: Checkout + uses: actions/checkout@v4 + + - name: Show files run: | - echo "runner is alive" - node -v - npm -v - corepack enable - pnpm -v \ No newline at end of file + pwd + ls -la \ No newline at end of file