From 5723b14458b0b6d4f1717110ea53669a1315f85e Mon Sep 17 00:00:00 2001 From: ynishimura Date: Wed, 18 Dec 2024 10:47:16 +0900 Subject: [PATCH 1/2] ci(config): Update GitHub workflow's node and ubuntu version --- .github/workflows/config.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/config.yml b/.github/workflows/config.yml index 3328992c..cf682a98 100644 --- a/.github/workflows/config.yml +++ b/.github/workflows/config.yml @@ -4,12 +4,12 @@ on: [push, pull_request] jobs: test: - runs-on: ubuntu-latest + runs-on: ubuntu-20.04 steps: - - uses: actions/checkout@v2 - - uses: actions/setup-node@v2.1.4 + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 with: - node-version: 14 + node-version: 18 - run: | npm install - run: | From 90fc2a63b0574e53daede88b3a126ed4f0b9289d Mon Sep 17 00:00:00 2001 From: ynishimura Date: Wed, 18 Dec 2024 10:59:48 +0900 Subject: [PATCH 2/2] ci(config): use legacy peer deps in npm install --- .github/workflows/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/config.yml b/.github/workflows/config.yml index cf682a98..9a1ad05e 100644 --- a/.github/workflows/config.yml +++ b/.github/workflows/config.yml @@ -11,7 +11,7 @@ jobs: with: node-version: 18 - run: | - npm install + npm install --legacy-peer-deps - run: | npm run lint - run: |