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