From a412595a4db876e9c7d8b6f13864ff8b8876b935 Mon Sep 17 00:00:00 2001 From: Kunal Khandelwal Date: Tue, 29 Nov 2022 00:00:28 +0530 Subject: [PATCH] chore: add support for nodejs 19 (#700) --- .github/workflows/nodejs-ci-action.yml | 6 +++--- package.json | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/nodejs-ci-action.yml b/.github/workflows/nodejs-ci-action.yml index 3c21ca15..75c5e461 100644 --- a/.github/workflows/nodejs-ci-action.yml +++ b/.github/workflows/nodejs-ci-action.yml @@ -13,7 +13,7 @@ jobs: strategy: matrix: - node-version: [14.x, 16.x] + node-version: [14.x, 16.x, 18.x] steps: - uses: actions/checkout@v2 @@ -37,10 +37,10 @@ jobs: steps: - uses: actions/checkout@v2 - - name: Use Node.js 18.x + - name: Use Node.js 19.x uses: actions/setup-node@v2 with: - node-version: 18.x + node-version: 19.x - run: npm ci - run: npm run build - run: npm run test:headless diff --git a/package.json b/package.json index 62862b4c..d06fefcc 100644 --- a/package.json +++ b/package.json @@ -70,7 +70,7 @@ "rate-limiting" ], "engines": { - "node": "^18 || ^16 || ^14" + "node": "^19 || ^18 || ^16 || ^14" }, "support": true }