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 c0d5292 commit 646bfd3Copy full SHA for 646bfd3
.github/workflows/pr_checks.yml
@@ -7,23 +7,25 @@ on:
7
paths-ignore:
8
- "**.md"
9
- ".github/CODEOWNERS"
10
+ - ".github/ISSUE_TEMPLATE/**"
11
+
12
+concurrency:
13
+ group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
14
+ cancel-in-progress: true
15
16
permissions:
17
contents: read
18
id-token: write
19
20
jobs:
- type-check:
- name: "ʦ TypeScript"
21
+ typecheck:
22
uses: ./.github/workflows/typecheck.yml
23
secrets: inherit
24
- unitTests:
- name: "🧪 Unit Tests"
25
+ units:
26
uses: ./.github/workflows/unit-tests.yml
27
28
29
e2e:
- name: "🧪 E2E Tests"
30
uses: ./.github/workflows/e2e.yml
31
0 commit comments