8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c1fc85c commit eff0dd9Copy full SHA for eff0dd9
.github/workflows/lint.yml
@@ -10,7 +10,7 @@ permissions:
10
contents: read
11
12
jobs:
13
- lint:
+ pre-commit:
14
runs-on: ubuntu-latest
15
16
steps:
@@ -20,3 +20,14 @@ jobs:
20
python-version: "3.x"
21
cache: pip
22
- uses: pre-commit/action@v3.0.1
23
+
24
+ prettier:
25
+ runs-on: ubuntu-latest
26
27
+ steps:
28
+ - uses: actions/checkout@v4
29
+ - uses: actions/setup-node@v4
30
+ with:
31
+ node-version: "22"
32
+ - name: Lint with Prettier
33
+ run: npx prettier templates/switchers.js --check --single-quote
0 commit comments