This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2023-01-05 04:45:21 -08:00
|
|
|
name: JSON Linting
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches-ignore:
|
|
|
|
- 'dependabot/**'
|
2023-06-06 01:42:23 -07:00
|
|
|
- 'renovate/**'
|
2023-01-05 04:45:21 -08:00
|
|
|
paths:
|
|
|
|
- 'package.json'
|
|
|
|
- 'yarn.lock'
|
2023-02-15 19:59:45 -08:00
|
|
|
- '.nvmrc'
|
2023-01-05 04:45:21 -08:00
|
|
|
- '.prettier*'
|
|
|
|
- '**/*.json'
|
|
|
|
- '.github/workflows/lint-json.yml'
|
2023-02-01 06:15:11 -08:00
|
|
|
- '!app/javascript/mastodon/locales/*.json'
|
2023-01-05 04:45:21 -08:00
|
|
|
|
|
|
|
pull_request:
|
|
|
|
paths:
|
|
|
|
- 'package.json'
|
|
|
|
- 'yarn.lock'
|
2023-02-15 19:59:45 -08:00
|
|
|
- '.nvmrc'
|
2023-01-05 04:45:21 -08:00
|
|
|
- '.prettier*'
|
|
|
|
- '**/*.json'
|
|
|
|
- '.github/workflows/lint-json.yml'
|
2023-02-01 06:15:11 -08:00
|
|
|
- '!app/javascript/mastodon/locales/*.json'
|
2023-01-05 04:45:21 -08: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-15 17:24:05 -08:00
|
|
|
node-version-file: '.nvmrc'
|
2023-01-05 04:45:21 -08:00
|
|
|
|
|
|
|
- name: Install all yarn packages
|
|
|
|
run: yarn --frozen-lockfile
|
|
|
|
|
|
|
|
- name: Prettier
|
2023-05-31 17:25:13 -07:00
|
|
|
run: yarn lint:json
|