From 5facba902c4a434584c838a859ee9ee72fc3f796 Mon Sep 17 00:00:00 2001 From: legobeat <109787230+legobeat@users.noreply.github.com> Date: Mon, 11 Mar 2024 18:30:03 +0900 Subject: [PATCH] ci: run build/lint/test on nodejs v18, v20; ubuntu-latest (#147) * chore(ci): build,lint,test on node v18, v20 * chore(ci): run on ubuntu-latest instead of ubuntu-20.04 --- .github/workflows/build-lint-test.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build-lint-test.yml b/.github/workflows/build-lint-test.yml index b4d113e..13ebf78 100644 --- a/.github/workflows/build-lint-test.yml +++ b/.github/workflows/build-lint-test.yml @@ -8,10 +8,10 @@ on: jobs: build-lint-test: name: Build, Lint, and Test - runs-on: ubuntu-20.04 + runs-on: ubuntu-latest strategy: matrix: - node-version: [12.x, 14.x, 16.x] + node-version: [12.x, 14.x, 16.x, 18.x, 20.x] steps: - uses: actions/checkout@v2 - name: Use Node.js ${{ matrix.node-version }} @@ -24,7 +24,7 @@ jobs: - run: yarn test all-jobs-pass: name: All jobs pass - runs-on: ubuntu-20.04 + runs-on: ubuntu-latest needs: - build-lint-test steps: