diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index ba01b489..7f15a4f9 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - node-version: [ 18.x, 20.x ] + node-version: [ 18.x, 20.x, 22.x ] steps: - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 @@ -33,8 +33,8 @@ jobs: - name: GitHub Pages uses: JamesIves/github-pages-deploy-action@v4.6.9 - if: matrix.node-version == '18.x' && github.ref == 'refs/heads/main' + if: matrix.node-version == '22.x' && github.ref == 'refs/heads/main' with: - BRANCH: gh-pages - FOLDER: target/site/serenity - CLEAN: true + branch: gh-pages + folder: target/site/serenity + clean: true diff --git a/package-lock.json b/package-lock.json index cf2cae3a..733ad3a9 100644 --- a/package-lock.json +++ b/package-lock.json @@ -39,7 +39,7 @@ "typescript": "^5.6.3" }, "engines": { - "node": "^18.12 || ^20 || ^22.0.0" + "node": "^18.12 || ^20 || ^22" } }, "node_modules/@aashutoshrathi/word-wrap": { diff --git a/package.json b/package.json index f443b84b..1875c573 100644 --- a/package.json +++ b/package.json @@ -30,7 +30,7 @@ }, "homepage": "https://serenity-js.org", "engines": { - "node": "^18.12 || ^20 || ^22.0.0" + "node": "^18.12 || ^20 || ^22" }, "dependencies": { "@serenity-js/assertions": "^3.30.0",