From fbb7fd23c4261c0ae217c9d7ccacce9242effe8d Mon Sep 17 00:00:00 2001 From: liyy <18435186204@163.com> Date: Wed, 7 May 2025 02:55:29 +0000 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E7=8E=AF=E5=A2=83=E7=9B=91?= =?UTF-8?q?=E6=B5=8B=E8=AF=AD=E5=8F=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitea/workflows/demo.yaml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/.gitea/workflows/demo.yaml b/.gitea/workflows/demo.yaml index c3c61d8..a8b01b3 100644 --- a/.gitea/workflows/demo.yaml +++ b/.gitea/workflows/demo.yaml @@ -11,6 +11,17 @@ jobs: - run: echo "🔎 The name of your branch is ${{ gitea.ref }} and your repository is ${{ gitea.repository }}." - run: echo "💡 The ${{ gitea.repository }} repository has been cloned to the runner." - run: echo "🖥️ The workflow is now ready to test your code on the runner." + - name: Check git version + run: | + echo "git -v" + - name: Check nodejs version + run: | + echo "node -v" + echo "npm -v" + - run: npm i -g pnpm + - name: Check pnpm version + run: | + echo "pnpm -v" - name: List files in the repository run: | ls ${{ gitea.workspace }}