We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b4edb16 commit a1d5398Copy full SHA for a1d5398
.github/workflows/build.yml
@@ -11,6 +11,12 @@ on:
11
description: If the commit you want to test isn't the head of a branch, provide its SHA here
12
required: false
13
14
+# Cancel in progress workflows on pull_requests.
15
+# https://docs.github.com/en/actions/using-jobs/using-concurrency#example-using-a-fallback-value
16
+concurrency:
17
+ group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
18
+ cancel-in-progress: true
19
+
20
env:
21
# We pin the exact version to enforce reproducable builds with node + npm.
22
DEFAULT_NODE_VERSION: '16.15.1'
0 commit comments