feat(config): eslint consolidation (#81) #212
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# Made with ❤️ and adobo by Kurocado Studio | |
# Copyright (c) 2024. All Rights Reserved. | |
# | |
# Learn more about Kurocado Studio: {@link https://www.kurocado.studio} | |
# | |
# Explore our open-source projects: {@link https://github.com/kurocado-studio} | |
# | |
name: CI/CD Pipeline | |
permissions: | |
contents: write | |
id-token: write | |
pages: write | |
pull-requests: write | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
- alpha | |
- beta | |
- canary | |
- pre/rc | |
jobs: | |
lint: | |
uses: kurocado-studio/styleguide/.github/workflows/workflow.lint.yml@main | |
secrets: inherit | |
document: | |
needs: lint | |
uses: kurocado-studio/styleguide/.github/workflows/workflow.document.yml@main | |
secrets: inherit | |
release: | |
needs: lint | |
uses: kurocado-studio/styleguide/.github/workflows/workflow.release.yml@main | |
secrets: inherit | |
with: | |
branch_name: ${{ github.ref }} |