Skip to content

Commit

Permalink
chore: add concurrency in lint-build-test and storybook workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
gmukul01 committed Jul 5, 2023
1 parent eaa5074 commit 04c6698
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/lint-test-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ on:
branches:
- 'master'

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
lint-test-build:
runs-on: ubuntu-latest
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/storybook.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ on:
branches:
- master

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
storybook:
runs-on: ubuntu-latest
Expand Down

0 comments on commit 04c6698

Please sign in to comment.