Skip to content

Commit

Permalink
fix(#24): 🐛 THe pipeline syntax was for gitlab, not github
Browse files Browse the repository at this point in the history
  • Loading branch information
gautegf committed Oct 8, 2025
1 parent 8d36734 commit 03002b2
Showing 1 changed file with 13 additions and 8 deletions.
21 changes: 13 additions & 8 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,14 @@
stages:
- lint
name: Prettier

prettier:
stage: lint
image: node:20
script:
- npm ci
- npx prettier --check .
on: [push, pull_request]

jobs:
prettier:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
- run: npm ci
- run: npx prettier --check .

0 comments on commit 03002b2

Please sign in to comment.