diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 7b5c6b9..2a47fb1 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -12,18 +12,14 @@ jobs: fail-fast: false matrix: node-version: - - 14 - - 16 - 18 + - 20 - latest - architecture: - - x64 steps: - - uses: actions/checkout@v3 - - uses: actions/setup-node@v3 + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 with: node-version: ${{ matrix.node-version }} - architecture: ${{ matrix.architecture }} - run: yarn --frozen-lockfile - run: yarn lint - run: yarn test diff --git a/package.json b/package.json index 4bafd8d..e020993 100644 --- a/package.json +++ b/package.json @@ -28,6 +28,6 @@ "lint": "eslint ." }, "engines": { - "node": ">=14" + "node": ">=18" } }