Skip to content

Commit 646bfd3

Browse files
authored
Pushing a commit to the branch so I can open a PR (#592)
* Pushing a commit to the branch so I can open a PR * Couple improvements to the pr checks workflow
1 parent c0d5292 commit 646bfd3

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

.github/workflows/pr_checks.yml

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,23 +7,25 @@ on:
77
paths-ignore:
88
- "**.md"
99
- ".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
1015

1116
permissions:
1217
contents: read
1318
id-token: write
1419

1520
jobs:
16-
type-check:
17-
name: "ʦ TypeScript"
21+
typecheck:
1822
uses: ./.github/workflows/typecheck.yml
1923
secrets: inherit
2024

21-
unitTests:
22-
name: "🧪 Unit Tests"
25+
units:
2326
uses: ./.github/workflows/unit-tests.yml
2427
secrets: inherit
2528

2629
e2e:
27-
name: "🧪 E2E Tests"
2830
uses: ./.github/workflows/e2e.yml
2931
secrets: inherit

0 commit comments

Comments
 (0)