From e4468a27d70cb4bc4dfd5758b8437791aea8867a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C3=ABl=20De=20Boey?= Date: Wed, 21 Apr 2021 16:36:45 +0200 Subject: [PATCH 1/2] chore: add tests for Node 16 --- .github/workflows/nightwatch-testing-library.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/nightwatch-testing-library.yml b/.github/workflows/nightwatch-testing-library.yml index 73dc3c7..5201852 100644 --- a/.github/workflows/nightwatch-testing-library.yml +++ b/.github/workflows/nightwatch-testing-library.yml @@ -12,7 +12,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - node: [12, 10] + node: [10, 12, 14, 16] steps: - uses: nanasess/setup-chromedriver@master with: @@ -20,20 +20,20 @@ jobs: - run: | export DISPLAY=:99 sudo Xvfb -ac :99 -screen 0 1280x1024x24 > /dev/null 2>&1 & # optional - - uses: actions/setup-node@v1 + - uses: actions/setup-node@v2 with: node-version: ${{ matrix.node }} - - uses: actions/checkout@v1 + - uses: actions/checkout@v2 - run: npm install - run: npm run validate release: runs-on: ubuntu-latest needs: test steps: - - uses: actions/setup-node@v1 + - uses: actions/setup-node@v2 with: - node-version: 12 - - uses: actions/checkout@v1 + node-version: 14 + - uses: actions/checkout@v2 - run: npm install - run: npm run build - run: ls -asl dist From 737def3c75ef9b3a4b0ffd44d0592a4befd2636e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C3=ABl=20De=20Boey?= Date: Sun, 18 Jul 2021 13:16:22 +0200 Subject: [PATCH 2/2] Update package.json --- package.json | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/package.json b/package.json index 87812e5..adbae06 100644 --- a/package.json +++ b/package.json @@ -41,6 +41,10 @@ "type": "git", "url": "https://github.com/testing-library/nightwatch-testing-library.git" }, + "engines": { + "node": ">=10", + "npm": ">=6" + }, "release": { "branches": [ "master",