From 2a4b9ebf3d382e8e8b48b5e24a31f458694793cd Mon Sep 17 00:00:00 2001 From: Muunatic Date: Tue, 9 Dec 2025 11:44:19 +0700 Subject: [PATCH 1/2] chore(gitignore): ignore .cache and package-lock --- .gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitignore b/.gitignore index 5587554..0164fa8 100644 --- a/.gitignore +++ b/.gitignore @@ -6,3 +6,6 @@ npm-debug.log coverage lib dist +.vscode +package-lock.json +.cache From d34c57fbba808e0d487eb07c422ca1eedc84db8b Mon Sep 17 00:00:00 2001 From: Muunatic Date: Tue, 9 Dec 2025 11:45:11 +0700 Subject: [PATCH 2/2] build(CI): upgrade node and npm version --- .github/workflows/build.yml | 4 ++-- .github/workflows/lint.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 77a7abd..7fc3a5d 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -11,7 +11,7 @@ jobs: runs-on: windows-latest 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..b062ba3 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -11,7 +11,7 @@ jobs: runs-on: windows-latest 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