diff --git a/.github/workflows/dependabot-automerge.yml b/.github/workflows/dependabot-automerge.yml index 3e90cfa0..c3d9f6f0 100644 --- a/.github/workflows/dependabot-automerge.yml +++ b/.github/workflows/dependabot-automerge.yml @@ -11,15 +11,7 @@ permissions: jobs: lib_test: - strategy: - matrix: - node: - - name: Latest LTS - version: lts/* - - name: Prev LTS - version: lts/-1 - - name: Unit Test (Node.js ${{ matrix.node.name }}) + name: Unit Test (Node.js) runs-on: ubuntu-latest if: github.actor == 'dependabot[bot]' @@ -31,7 +23,7 @@ jobs: - uses: actions/setup-node@v2 with: - node-version: ${{ matrix.node.version }} + node-version: lts/* - name: Install dependencies run: yarn --frozen-lockfile diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index d5d8fe38..f3a0c356 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -49,15 +49,7 @@ jobs: - run: deno run test/src/index.mjs lib_test: - strategy: - matrix: - node: - - name: Latest LTS - version: lts/* - - name: Prev LTS - version: lts/-1 - - name: Unit Test (Node.js ${{ matrix.node.name }}) + name: Unit Test (Node.js) runs-on: ubuntu-latest if: | github.event_name == 'schedule' || @@ -71,7 +63,7 @@ jobs: - uses: actions/setup-node@v2 with: - node-version: ${{ matrix.node.version }} + node-version: lts/* - name: Install dependencies run: yarn --frozen-lockfile