Fix tests without collectstatic #1711
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: JavaScript | |
on: | |
pull_request: | |
branches: | |
- "*" | |
jobs: | |
lint-js: | |
name: Lint JavaScript | |
timeout-minutes: 2 | |
runs-on: ubuntu-latest | |
steps: | |
- name: Clone Repo | |
uses: actions/checkout@v2 | |
- name: Set up Node | |
uses: actions/setup-node@v1 | |
with: | |
node-version: 21 | |
- name: Setup | |
run: npm ci | |
- name: Lint JavaScript | |
run: npx prettier --check -- "**/*.js" |