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 bfd1b13 commit 99dca4aCopy full SHA for 99dca4a
.github/workflows/build.yml
@@ -3,6 +3,11 @@ name: Build
3
4
on: [push, pull_request]
5
6
+# cancel any prior runs for this workflow and this PR (or branch)
7
+concurrency:
8
+ group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
9
+ cancel-in-progress: true
10
+
11
jobs:
12
tests:
13
name: static checks / linters
@@ -59,4 +64,4 @@ jobs:
59
64
- name: Generate pdl_ast.d.ts
60
65
run: npx json2ts ../src/pdl/pdl-schema.json src/pdl_ast.d.ts --unreachableDefinitions
61
66
- name: Build viewer
62
- run: npm run build
67
+ run: npm run build
0 commit comments