From 972f27783765a1a8db3c69a83a0f48fcd6b23d0b Mon Sep 17 00:00:00 2001 From: Gabe <41127686+Zidious@users.noreply.github.com> Date: Tue, 16 Jul 2024 20:53:19 +0100 Subject: [PATCH] wdio v7 only works on node 16 --- .github/workflows/smoke-test.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/smoke-test.yml b/.github/workflows/smoke-test.yml index ec90cd2..7d78ac7 100644 --- a/.github/workflows/smoke-test.yml +++ b/.github/workflows/smoke-test.yml @@ -163,7 +163,8 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-node@v4 with: - node-version: 18 + # WDIO v7 does not work on Node > 16. Please refer to `setup.ts` for more information. + node-version: 16 - run: cd wdio/v7/typescript-basic && npm install && npm test env: API_KEY: ${{ secrets.AXE_DEVHUB_API_KEY }}