Skip to content

Merge pull request #3394 from matthewmincher/feature/user-shelf-previ… #72

Merge pull request #3394 from matthewmincher/feature/user-shelf-previ…

Merge pull request #3394 from matthewmincher/feature/user-shelf-previ… #72

Workflow file for this run

# @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.
- uses: actions/checkout@v4
- name: Install modules
run: npm install prettier@2.5.1
- name: Run Prettier
run: npx prettier --check bookwyrm/static/js/*.js