From ff973b898beeb82c024c9fccb17755674772e480 Mon Sep 17 00:00:00 2001 From: Muunatic Date: Wed, 4 Feb 2026 21:59:16 +0700 Subject: [PATCH] build(CI): upgrade node and npm --- .github/workflows/build.yml | 6 +++--- .github/workflows/lint.yml | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 77a7abd..df343a9 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -8,10 +8,10 @@ on: jobs: build: - runs-on: windows-latest + runs-on: ubuntu-22.04 strategy: matrix: - node-version: [20.19.0] + node-version: [22.21.1] steps: - uses: actions/checkout@v3 - name: Use Node.js ${{ matrix.node-version }} @@ -19,7 +19,7 @@ jobs: with: node-version: ${{ matrix.node-version }} - name: Install npm - run: npm install npm@10.8.2 -g + run: npm install npm@10.9.4 -g - name: Install dependencies run: npm i - name: Run typescript compiler diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 7c93cd4..db168be 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -8,10 +8,10 @@ on: jobs: lint: - runs-on: windows-latest + runs-on: ubuntu-22.04 strategy: matrix: - node-version: [20.19.0] + node-version: [22.21.1] steps: - uses: actions/checkout@v3 - name: Use Node.js ${{ matrix.node-version }} @@ -19,7 +19,7 @@ jobs: with: node-version: ${{ matrix.node-version }} - name: Install npm - run: npm install npm@10.8.2 -g + run: npm install npm@10.9.4 -g - name: Install dependencies run: npm i - name: Run lint