2023-01-05 12:45:21 +00:00
|
|
|
name: JSON Linting
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches-ignore:
|
|
|
|
- 'dependabot/**'
|
|
|
|
paths:
|
|
|
|
- 'package.json'
|
|
|
|
- 'yarn.lock'
|
|
|
|
- '.prettier*'
|
|
|
|
- '**/*.json'
|
|
|
|
- '.github/workflows/lint-json.yml'
|
2023-02-01 14:15:11 +00:00
|
|
|
- '!app/javascript/mastodon/locales/*.json'
|
2023-01-05 12:45:21 +00:00
|
|
|
|
|
|
|
pull_request:
|
|
|
|
paths:
|
|
|
|
- 'package.json'
|
|
|
|
- 'yarn.lock'
|
|
|
|
- '.prettier*'
|
|
|
|
- '**/*.json'
|
|
|
|
- '.github/workflows/lint-json.yml'
|
2023-02-01 14:15:11 +00:00
|
|
|
- '!app/javascript/mastodon/locales/*.json'
|
2023-01-05 12:45:21 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
lint:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Clone repository
|
|
|
|
uses: actions/checkout@v3
|
|
|
|
|
|
|
|
- name: Set up Node.js
|
|
|
|
uses: actions/setup-node@v3
|
|
|
|
with:
|
|
|
|
cache: yarn
|
2023-02-16 01:24:05 +00:00
|
|
|
node-version-file: '.nvmrc'
|
2023-01-05 12:45:21 +00:00
|
|
|
|
|
|
|
- name: Install all yarn packages
|
|
|
|
run: yarn --frozen-lockfile
|
|
|
|
|
|
|
|
- name: Prettier
|
|
|
|
run: yarn prettier --check "**/*.json"
|