Skip to content

Commit

Permalink
fix(ci): run Lint Workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
csantiago132 committed Oct 4, 2024
1 parent 47e0483 commit c5f8e78
Showing 1 changed file with 13 additions and 5 deletions.
18 changes: 13 additions & 5 deletions .github/workflows/ci.lint.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
name: Code Quality

on:
workflow_call:
pull_request:
push:
branches:
Expand All @@ -14,7 +13,16 @@ permissions:
id-token: write

jobs:
ci-lint:
uses: kurocado-studio/styleguide/.github/workflows/lint.yml@main
secrets:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
fetch-depth: 0

- name: Run Lint Workflow
uses: kurocado-studio/styleguide/.github/workflows/lint.yml@main
secrets:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit c5f8e78

Please sign in to comment.