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.
push
1 parent ac7aabb commit 7c50767Copy full SHA for 7c50767
.github/workflows/ci.build.yml
@@ -9,7 +9,7 @@ permissions:
9
10
jobs:
11
build:
12
- name: Build
+ name: "Build: Site"
13
runs-on: ubuntu-latest
14
permissions:
15
contents: read
.github/workflows/on.push.yml
@@ -13,7 +13,20 @@ jobs:
name: "Build"
uses: ./.github/workflows/ci.build.yml
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
28
deploy:
29
name: "Deploy"
30
uses: ./.github/workflows/ci.deploy.yml
31
+ needs: [build, test]
32
secrets: inherit
0 commit comments