diff --git a/.buildkite/pipeline.yml b/.buildkite/pipeline.yml index e27888106..4dc60e227 100644 --- a/.buildkite/pipeline.yml +++ b/.buildkite/pipeline.yml @@ -15,6 +15,7 @@ steps: nodejs: - "18" - "20" + - "22" command: ./.buildkite/run-tests.sh artifact_paths: "./junit-output/junit-*.xml" - wait: ~ @@ -26,6 +27,6 @@ steps: plugins: - junit-annotate#v2.4.1: artifacts: "junit-output/junit-*.xml" - job-uuid-file-pattern: 'junit-(.*).xml' + job-uuid-file-pattern: "junit-(.*).xml" fail-build-on-error: true failure-format: file diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml index 132294174..7511a0033 100644 --- a/.github/workflows/nodejs.yml +++ b/.github/workflows/nodejs.yml @@ -9,7 +9,7 @@ jobs: name: Detect files changed runs-on: ubuntu-latest outputs: - src-only: '${{ steps.changes.outputs.src-only }}' + src-only: "${{ steps.changes.outputs.src-only }}" steps: - uses: actions/checkout@v4 - uses: dorny/paths-filter/@v2.11.1 @@ -30,7 +30,7 @@ jobs: strategy: fail-fast: false matrix: - node-version: [18.x, 20.x] + node-version: [18.x, 20.x, 22.x] os: [ubuntu-latest, windows-latest, macOS-latest] steps: @@ -66,7 +66,7 @@ jobs: strategy: matrix: - node-version: [20.x] + node-version: [22.x] steps: - uses: actions/checkout@v3