From 19305b01ba5a3ace3ce01677c85a4d2ec6e721e9 Mon Sep 17 00:00:00 2001 From: Daniel Lando Date: Fri, 16 Feb 2024 15:35:15 +0100 Subject: [PATCH] fix: node 20 test --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 5704916d..b8e58fd6 100644 --- a/package.json +++ b/package.json @@ -74,10 +74,10 @@ "fix": "npm run lint:style -- -w && npm run lint:code -- --fix", "prepare": "npm run build", "prepublishOnly": "npm run lint", - "test": "npm run build && npm run test:18 && npm run test:16 && npm run test:14 && npm run test:host", + "test": "npm run build && npm run test:20 && npm run test:18 && npm run test:16 && npm run test:host", + "test:20": "node test/test.js node20 no-npm", "test:18": "node test/test.js node18 no-npm", "test:16": "node test/test.js node16 no-npm", - "test:14": "node test/test.js node14 no-npm", "test:host": "node test/test.js host only-npm", "release": "read -p 'GITHUB_TOKEN: ' GITHUB_TOKEN && export GITHUB_TOKEN=$GITHUB_TOKEN && release-it" },