From b96480deaf0ee05bca951e5233364d55d9e378e8 Mon Sep 17 00:00:00 2001 From: hustcc Date: Thu, 15 May 2025 13:44:04 +0800 Subject: [PATCH 1/2] fix: ci config file --- .github/workflows/{ci.yml => build.yml} | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) rename .github/workflows/{ci.yml => build.yml} (88%) diff --git a/.github/workflows/ci.yml b/.github/workflows/build.yml similarity index 88% rename from .github/workflows/ci.yml rename to .github/workflows/build.yml index ec72c12..3fc2ffe 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/build.yml @@ -1,15 +1,15 @@ -name: CI +name: build on: ["push", "pull_request"] jobs: ci: - runs-on: ubuntu-20.04 + runs-on: ubuntu-latest strategy: matrix: node-version: [15] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: pnpm/action-setup@v2 with: version: 7 From 8f6055d0540d9b7478c15038e3d293e7abb0aa07 Mon Sep 17 00:00:00 2001 From: hustcc Date: Thu, 15 May 2025 13:45:09 +0800 Subject: [PATCH 2/2] chore: update action name --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 3fc2ffe..b15b50f 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -3,7 +3,7 @@ name: build on: ["push", "pull_request"] jobs: - ci: + build: runs-on: ubuntu-latest strategy: matrix: