From d248bca3a8f9e25e2ef9bec61dc87f5ed1753436 Mon Sep 17 00:00:00 2001 From: rtritto Date: Sun, 15 Oct 2023 19:41:53 +0200 Subject: [PATCH] chore: update minor node version 14 to 16 --- .github/workflows/test.yml | 2 +- package.json | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index ef3f1cd..b6fec75 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -17,7 +17,7 @@ jobs: - uses: actions/checkout@v2 - uses: actions/setup-node@v3.1.0 with: - node-version: '14.x' + node-version: '16.x' - run: yarn install --frozen-lockfile # will run `yarn install` command - run: yarn add bson@${{ matrix.bson }} - run: yarn sanity # will check if building works & if code is formatted well diff --git a/package.json b/package.json index 19a7be4..6af961d 100644 --- a/package.json +++ b/package.json @@ -57,5 +57,8 @@ }, "lint-staged": { "*.{js,jsx,ts,less,html,md,yml}": "prettier --write" + }, + "engines" : { + "node" : ">=16" } }