Skip to content

chore: apply ci hardening (#5) #10

chore: apply ci hardening (#5)

chore: apply ci hardening (#5) #10

Workflow file for this run

name: Push
on:
push:
branches:
- main
permissions:
contents: read
jobs:
build:
name: "Build"
uses: ./.github/workflows/ci.build.yml
test:
name: "Build"
uses: ./.github/workflows/ci.test.yml
secrets: inherit # codecov/sonar tokens
check-prettier:
name: "Checks"
uses: ./.github/workflows/check.prettier.yml
check-workflows:
name: "Checks"
uses: ./.github/workflows/check.workflows.yml
check-chromatic:
name: "Checks"
uses: ./.github/workflows/check.chromatic.yml
secrets: inherit
deploy:
name: "Deploy"
uses: ./.github/workflows/ci.deploy.yml
needs: [build, test]
secrets: inherit