From e5fe51353366ec6215247543a93ea2d101c2a5cf Mon Sep 17 00:00:00 2001 From: bent10 Date: Sun, 21 Apr 2024 08:08:38 +0700 Subject: [PATCH] ci: update `node-version` --- .github/workflows/release.yml | 2 +- .github/workflows/validate.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 00fcac9..928dfba 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -21,7 +21,7 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-node@v4 with: - node-version: 20.8.1 # required by semantic-release + node-version: 20.9.0 # required by semantic-release - run: npm ci - run: npm run lint - run: npm run build diff --git a/.github/workflows/validate.yml b/.github/workflows/validate.yml index d5ad128..5eb70da 100644 --- a/.github/workflows/validate.yml +++ b/.github/workflows/validate.yml @@ -18,7 +18,7 @@ jobs: fail-fast: false matrix: node-version: - - 18.17.0 + - 18.18.0 os: - ubuntu-latest - windows-latest @@ -27,6 +27,6 @@ jobs: - uses: actions/setup-node@v4 with: node-version: ${{ matrix.node-version }} - - run: npm ci + - run: npm ci --legacy-peer-deps - run: npm run lint - run: npm test