From 5c18d6cab4a0dbcd2d0ecc26e1a5df114710af13 Mon Sep 17 00:00:00 2001 From: Galen Huntington Date: Wed, 25 Oct 2023 09:55:51 -0700 Subject: [PATCH] fix(engines): support node >= 18 --- .github/workflows/ci.yaml | 9 ++++----- package.json | 2 +- 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index c606cf8..27a7974 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -1,21 +1,20 @@ name: verify on: + pull_request: push: - branches: [master] - pull_request_target: jobs: all: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - - uses: actions/setup-node@v2 + - uses: actions/setup-node@v3 with: cache: yarn - node-version: 16.x + node-version: 20.x - name: Install run: yarn install --frozen-lockfile diff --git a/package.json b/package.json index d149f05..b8466d6 100644 --- a/package.json +++ b/package.json @@ -44,7 +44,7 @@ "typescript": "5.1.6" }, "engines": { - "node": "^18.0.0" + "node": ">=18" }, "files": [ "dist",