bookwyrm/.github/workflows/prettier.yaml

24 lines
579 B
YAML
Raw Normal View History

2021-12-16 18:47:22 +00:00
# @url https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions
name: JavaScript Prettier (run ./bw-dev prettier to fix)
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
lint:
name: Lint with Prettier
runs-on: ubuntu-20.04
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it.
2024-03-13 11:30:52 +00:00
- uses: actions/checkout@v4
2021-12-16 18:47:22 +00:00
- name: Install modules
run: npm install prettier@2.5.1
2021-12-16 18:47:22 +00:00
- name: Run Prettier
run: npx prettier --check bookwyrm/static/js/*.js