Skip to content

Commit

Permalink
ci: add lint action
Browse files Browse the repository at this point in the history
  • Loading branch information
ccatterina committed Mar 17, 2024
1 parent da3d1c0 commit 3481876
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:
push:
branches:
- main
pull_request:
types:
- assigned
- opened
- synchronize
- reopened

jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Validate QML and JavaScript files
uses: liri-infra/qmllint-action@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 3481876

Please sign in to comment.