Skip to content

Commit

Permalink
chore(ci): add prettier lint
Browse files Browse the repository at this point in the history
Signed-off-by: Evgeniy Frolov <[email protected]>
  • Loading branch information
Fral738 committed Jan 13, 2025
1 parent f611f08 commit 44056bf
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Lint

on:
workflow_call:

jobs:
prettier:
runs-on: ubuntu-latest
timeout-minutes: 7
steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Install Task
uses: arduino/setup-task@v2
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}

- name: Install prettier
run: task -p deps:install:prettier

- name: Lint
run: task -p lint:prettier

0 comments on commit 44056bf

Please sign in to comment.