2023-01-05 13:45:21 +01:00
|
|
|
name: YML Linting
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches-ignore:
|
|
|
|
- 'dependabot/**'
|
2023-06-06 10:42:23 +02:00
|
|
|
- 'renovate/**'
|
2023-01-05 13:45:21 +01:00
|
|
|
paths:
|
|
|
|
- 'package.json'
|
|
|
|
- 'yarn.lock'
|
2023-02-16 04:59:45 +01:00
|
|
|
- '.nvmrc'
|
2023-01-05 13:45:21 +01:00
|
|
|
- '.prettier*'
|
|
|
|
- '**/*.yaml'
|
|
|
|
- '**/*.yml'
|
|
|
|
- '.github/workflows/lint-yml.yml'
|
2023-02-01 15:15:11 +01:00
|
|
|
- '!config/locales/*.yml'
|
2023-01-05 13:45:21 +01:00
|
|
|
|
|
|
|
pull_request:
|
|
|
|
paths:
|
|
|
|
- 'package.json'
|
|
|
|
- 'yarn.lock'
|
2023-02-16 04:59:45 +01:00
|
|
|
- '.nvmrc'
|
2023-01-05 13:45:21 +01:00
|
|
|
- '.prettier*'
|
|
|
|
- '**/*.yaml'
|
|
|
|
- '**/*.yml'
|
|
|
|
- '.github/workflows/lint-yml.yml'
|
2023-02-01 15:15:11 +01:00
|
|
|
- '!config/locales/*.yml'
|
2023-01-05 13:45:21 +01:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
lint:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Clone repository
|
2023-09-11 10:41:26 +02:00
|
|
|
uses: actions/checkout@v4
|
2023-01-05 13:45:21 +01:00
|
|
|
|
2023-10-24 13:43:24 +02:00
|
|
|
- name: Set up Javascript environment
|
|
|
|
uses: ./.github/actions/setup-javascript
|
2023-01-05 13:45:21 +01:00
|
|
|
|
|
|
|
- name: Prettier
|
2023-06-01 02:25:13 +02:00
|
|
|
run: yarn lint:yml
|