mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
523e0c5ef4
Co-authored-by: Felanbird <41973452+Felanbird@users.noreply.github.com>
26 lines
389 B
YAML
26 lines
389 B
YAML
---
|
|
name: Lint
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
pull_request:
|
|
|
|
concurrency:
|
|
group: lint-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
lint:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Lint Markdown files
|
|
uses: actionsx/prettier@v2
|
|
with:
|
|
# prettier CLI arguments.
|
|
args: --check '**/*.md'
|