perun-network / erdstall-ts-sdk

TypeScript client SDK to interact with Erdstall.
Apache License 2.0
5 stars 2 forks source link

CI: Add `concurrency` configuration #123

Open sebastianst opened 2 years ago

sebastianst commented 2 years ago

Use the concurrency feature of Github Workflows to enhance the CI for pull requests. Per pull-request, it should cancel any ongoing or pending runs, if newer code is pushed. This might just be achieved by adding the following

concurrency: 
  group: ci-${{ github.head_ref }}
  cancel-in-progress: true

But this has to be checked.