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
This commit is contained in:
Eric Allam
2023-10-09 18:28:49 +01:00
committed by GitHub
parent c0d5292b06
commit 646bfd37bd
+7 -5
View File
@@ -7,23 +7,25 @@ on:
paths-ignore:
- "**.md"
- ".github/CODEOWNERS"
- ".github/ISSUE_TEMPLATE/**"
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
permissions:
contents: read
id-token: write
jobs:
type-check:
name: "ʦ TypeScript"
typecheck:
uses: ./.github/workflows/typecheck.yml
secrets: inherit
unitTests:
name: "🧪 Unit Tests"
units:
uses: ./.github/workflows/unit-tests.yml
secrets: inherit
e2e:
name: "🧪 E2E Tests"
uses: ./.github/workflows/e2e.yml
secrets: inherit