From a99e11b2dffa06c84f51f503e731a6886db641f5 Mon Sep 17 00:00:00 2001 From: Bryan English Date: Wed, 22 May 2024 14:55:02 -0400 Subject: [PATCH] parallelize next plugin test --- .github/workflows/plugins.yml | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/.github/workflows/plugins.yml b/.github/workflows/plugins.yml index c780d3d2cca..990f9d20376 100644 --- a/.github/workflows/plugins.yml +++ b/.github/workflows/plugins.yml @@ -935,17 +935,20 @@ jobs: # TODO: fix performance issues and test more Node versions next: + strategy: + matrix: + version: [18, latest] # note that 18 is currently "oldest". change when necessary. 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