mirror of https://github.com/tootsuite/mastodon
47 lines
1000 B
YAML
47 lines
1000 B
YAML
name: Haml Linting
|
|
on:
|
|
merge_group:
|
|
push:
|
|
branches:
|
|
- 'main'
|
|
- 'stable-*'
|
|
paths:
|
|
- '.github/workflows/haml-lint-problem-matcher.json'
|
|
- '.github/workflows/lint-haml.yml'
|
|
- '.haml-lint*.yml'
|
|
- '.rubocop*.yml'
|
|
- '.ruby-version'
|
|
- '**/*.haml'
|
|
- 'Gemfile*'
|
|
|
|
pull_request:
|
|
paths:
|
|
- '.github/workflows/haml-lint-problem-matcher.json'
|
|
- '.github/workflows/lint-haml.yml'
|
|
- '.haml-lint*.yml'
|
|
- '.rubocop*.yml'
|
|
- '.ruby-version'
|
|
- '**/*.haml'
|
|
- 'Gemfile*'
|
|
|
|
jobs:
|
|
lint:
|
|
runs-on: ubuntu-latest
|
|
|
|
env:
|
|
BUNDLE_ONLY: development
|
|
|
|
steps:
|
|
- name: Clone repository
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Set up Ruby
|
|
uses: ruby/setup-ruby@v1
|
|
with:
|
|
bundler-cache: true
|
|
|
|
- name: Run haml-lint
|
|
run: |
|
|
echo "::add-matcher::.github/workflows/haml-lint-problem-matcher.json"
|
|
bundle exec haml-lint --reporter github
|