Skip to content

24 fix pipeline #31

Merged
merged 6 commits into from
Oct 8, 2025
Merged
Show file tree
Hide file tree
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .github/pull_request_template.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,11 @@
Closes #

### Description

<!-- What does this PR do? Briefly describe the changes and their purpose. -->

### Testing steps

<!-- Describe how reviewers can test your changes (commands, steps, or setup instructions). -->

### Screenshots (optional)
### Screenshots (optional)
20 changes: 12 additions & 8 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
stages:
- lint
name: Prettier

prettier:
stage: lint
image: node:20
script:
- npm ci
- npx prettier --check .
on: [pull_request]
jobs:
prettier:
runs-on: self-hosted
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
- run: npm ci
- run: npx prettier --check .