From b200db9dea2f6d64fa4a879d34800b7e172ed7e0 Mon Sep 17 00:00:00 2001 From: streamich Date: Sat, 20 Jul 2024 15:38:52 +0200 Subject: [PATCH] =?UTF-8?q?ci:=20=F0=9F=8E=A1=20update=20Node.js=20version?= =?UTF-8?q?s?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/check-codebase.yml | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/.github/workflows/check-codebase.yml b/.github/workflows/check-codebase.yml index 0cc2e779..06eaf078 100644 --- a/.github/workflows/check-codebase.yml +++ b/.github/workflows/check-codebase.yml @@ -19,7 +19,7 @@ jobs: - name: Setup node uses: actions/setup-node@v1 with: - node-version: 14 + node-version: 18 - name: Install dependencies run: yarn install --frozen-lockfile @@ -37,7 +37,7 @@ jobs: - name: Setup node uses: actions/setup-node@v1 with: - node-version: 14 + node-version: 18 - name: Install dependencies run: yarn install --frozen-lockfile @@ -55,7 +55,7 @@ jobs: - name: Setup node uses: actions/setup-node@v1 with: - node-version: 14 + node-version: 18 - name: Install dependencies run: yarn install --frozen-lockfile @@ -73,10 +73,7 @@ jobs: strategy: matrix: os: [macos-latest, ubuntu-latest] - node: [12, 14, 16] - exclude: - - os: macos-latest - node: 12 + node: [18, 20] steps: - name: Check out repository uses: actions/checkout@v2