Skip to content

Commit

Permalink
chore: fix concurrency
Browse files Browse the repository at this point in the history
  • Loading branch information
danguilherme committed Apr 30, 2024
1 parent c247cad commit bb3df96
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@ jobs:
test:
name: 'Test & Lint'
runs-on: ubuntu-latest
strategy:
matrix:
node-version: ['10.x', '12.x', '14.x', '16.x']
concurrency:
group: test:${{ github.event_name }}:${{ github.ref }}
group: test:${{ github.event_name }}:${{ github.ref }}:node-${{ matrix.node-version }}
cancel-in-progress: true
strategy:
matrix:
node-version: ['10.x', '12.x', '14.x', '16.x']
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down

0 comments on commit bb3df96

Please sign in to comment.