Skip to content

refactor(config): adds husky #2

refactor(config): adds husky

refactor(config): adds husky #2

Workflow file for this run

name: CI/CD Pipeline
permissions:
contents: write
id-token: write
pages: write
pull-requests: write
on:
pull_request:
push:
branches:
- main
jobs:
lint:
uses: kurocado-studio/styleguide/.github/workflows/composite.lint.yml@main
secrets: inherit
test:
needs: lint
uses: kurocado-studio/styleguide/.github/workflows/composite.test.yml@main
secrets: inherit
document:
needs: test
uses: kurocado-studio/styleguide/.github/workflows/composite.document.yml@main
secrets: inherit
release:
needs: document
uses: kurocado-studio/styleguide/.github/workflows/composite.release.yml@main
secrets: inherit
if: |
github.event_name == 'push' &&
github.ref == 'refs/heads/main'