diff --git a/.github/workflows/appsec.yml b/.github/workflows/appsec.yml index aabc5be4d29..9e6ff9cb764 100644 --- a/.github/workflows/appsec.yml +++ b/.github/workflows/appsec.yml @@ -202,17 +202,22 @@ jobs: - uses: codecov/codecov-action@v3 next: + strategy: + matrix: + version: + - 18 + - latest runs-on: ubuntu-latest env: PLUGINS: next steps: - uses: actions/checkout@v4 - uses: ./.github/actions/testagent/start - - uses: ./.github/actions/node/setup + - uses: actions/setup-node@v3 + with: + cache: yarn + node-version: ${{ matrix.version }} - run: yarn install - - uses: ./.github/actions/node/oldest - - run: yarn test:appsec:plugins:ci - - uses: ./.github/actions/node/latest - run: yarn test:appsec:plugins:ci - if: always() uses: ./.github/actions/testagent/logs diff --git a/.github/workflows/plugins.yml b/.github/workflows/plugins.yml index c780d3d2cca..77666ab095d 100644 --- a/.github/workflows/plugins.yml +++ b/.github/workflows/plugins.yml @@ -935,17 +935,22 @@ jobs: # TODO: fix performance issues and test more Node versions next: + strategy: + matrix: + version: + - 18 + - latest runs-on: ubuntu-latest env: PLUGINS: next steps: - uses: actions/checkout@v4 - uses: ./.github/actions/testagent/start - - uses: ./.github/actions/node/setup + - uses: actions/setup-node@v3 + with: + cache: yarn + node-version: ${{ matrix.version }} - run: yarn install - - uses: ./.github/actions/node/oldest - - run: yarn test:plugins:ci - - uses: ./.github/actions/node/latest - run: yarn test:plugins:ci - if: always() uses: ./.github/actions/testagent/logs