From 307caad632138bb8b7851d87cd5bab0a2bf86c8b Mon Sep 17 00:00:00 2001 From: Megghy Date: Fri, 22 Dec 2023 15:40:12 +0800 Subject: [PATCH] update ci --- .github/workflows/node.js.yml | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/.github/workflows/node.js.yml b/.github/workflows/node.js.yml index 6b70083..b7be204 100644 --- a/.github/workflows/node.js.yml +++ b/.github/workflows/node.js.yml @@ -16,7 +16,7 @@ jobs: strategy: matrix: - node-version: [18.x] + node-version: [21.x] # See supported Node.js release schedule at https://nodejs.org/en/about/releases/ steps: @@ -26,11 +26,5 @@ jobs: with: node-version: ${{ matrix.node-version }} cache: 'npm' - - name: Run install - uses: borales/actions-yarn@v4 - with: - cmd: install # will run `yarn install` command - - name: Run build - uses: borales/actions-yarn@v4 - with: - cmd: build # will run `yarn build` command + - run: yarn install + - run: yarn build