Skip to content

Commit 7c50767

Browse files
committed
chore: run all checks on push (temp)
Signed-off-by: Sam Gammon <[email protected]>
1 parent ac7aabb commit 7c50767

File tree

2 files changed

+14
-1
lines changed

2 files changed

+14
-1
lines changed

.github/workflows/ci.build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ permissions:
99

1010
jobs:
1111
build:
12-
name: Build
12+
name: "Build: Site"
1313
runs-on: ubuntu-latest
1414
permissions:
1515
contents: read

.github/workflows/on.push.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,20 @@ jobs:
1313
name: "Build"
1414
uses: ./.github/workflows/ci.build.yml
1515

16+
test:
17+
name: "Build"
18+
uses: ./.github/workflows/ci.test.yml
19+
20+
check-prettier:
21+
name: "Check: Prettier"
22+
uses: ./.github/workflows/check.prettier.yml
23+
24+
check-workflows:
25+
name: "Check: Workflows"
26+
uses: ./.github/workflows/check.workflows.yml
27+
1628
deploy:
1729
name: "Deploy"
1830
uses: ./.github/workflows/ci.deploy.yml
31+
needs: [build, test]
1932
secrets: inherit

0 commit comments

Comments
 (0)