Skip to content

Commit c90dc39

Browse files
committed
more prettier
1 parent 4801c25 commit c90dc39

File tree

2 files changed

+16
-7
lines changed

2 files changed

+16
-7
lines changed

.github/pull_request_template.md

+9
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,23 @@
11
<!-- Use this template by filling in information and copy and pasting relevant items out of the html comments. -->
22

33
# Relates to:
4+
45
<!-- LINK TO ISSUE OR TICKET -->
56

67
<!-- This risks section is to be filled out before final review and merge. -->
8+
79
# Risks
10+
811
<!--
912
Low, medium, large. List what kind of risks, and what could be effected.
1013
-->
1114

1215
# Background
16+
1317
## What does this PR do?
1418

1519
## What kind of change is this?
20+
1621
<!--
1722
Bug fixes (non-breaking change which fixes an issue)
1823
Improvements (misc. changes to existing features)
@@ -26,17 +31,21 @@ Updates (new versions of included code)
2631
-->
2732

2833
# Documentation changes needed?
34+
2935
<!--
3036
My changes do not require a change to the project documentation.
3137
My changes require a change to the project documentation.
3238
If a docs change is needed: I have updated the documentation accordingly.
3339
-->
3440

3541
<!-- Please show how you tested the PR. This will really help if the PR needs to be retested, and probably help the PR get merged quicker. -->
42+
3643
# Testing
44+
3745
## Where should a reviewer start?
3846

3947
## Detailed testing steps
48+
4049
<!--
4150
None, automtated tests are fine.
4251
-->

.github/workflows/ci.yaml

+7-7
Original file line numberDiff line numberDiff line change
@@ -9,21 +9,21 @@ jobs:
99
runs-on: ubuntu-latest
1010
steps:
1111
- uses: actions/checkout@v4
12-
12+
1313
- uses: pnpm/action-setup@v3
1414
with:
1515
version: 9.4.0
16-
16+
1717
- uses: actions/setup-node@v4
1818
with:
19-
node-version: '23'
20-
cache: 'pnpm'
21-
19+
node-version: "23"
20+
cache: "pnpm"
21+
2222
- name: Install dependencies
2323
run: pnpm i
24-
24+
2525
- name: Run Prettier
2626
run: pnpm run prettier --check .
27-
27+
2828
- name: Build packages
2929
run: pnpm run build

0 commit comments

Comments
 (0)