Skip to content

Commit 3fed9df

Browse files
committed
chore: format files and minor changes to ci test
1 parent c2aa193 commit 3fed9df

File tree

5 files changed

+44
-22
lines changed

5 files changed

+44
-22
lines changed
Lines changed: 13 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
---
22
name: Bug report
33
about: Create a report to help us improve
4-
title: ''
5-
labels: ''
6-
assignees: ''
7-
4+
title: ""
5+
labels: ""
6+
assignees: ""
87
---
98

109
**Describe the bug**
1110
A clear and concise description of what the bug is.
1211

1312
**To Reproduce**
1413
Steps to reproduce the behavior:
14+
1515
1. Go to '...'
1616
2. Click on '....'
1717
3. Scroll down to '....'
@@ -24,15 +24,17 @@ A clear and concise description of what you expected to happen.
2424
If applicable, add screenshots to help explain your problem.
2525

2626
**Desktop (please complete the following information):**
27-
- OS: [e.g. iOS]
28-
- Browser [e.g. chrome, safari]
29-
- Version [e.g. 22]
27+
28+
- OS: [e.g. iOS]
29+
- Browser [e.g. chrome, safari]
30+
- Version [e.g. 22]
3031

3132
**Smartphone (please complete the following information):**
32-
- Device: [e.g. iPhone6]
33-
- OS: [e.g. iOS8.1]
34-
- Browser [e.g. stock browser, safari]
35-
- Version [e.g. 22]
33+
34+
- Device: [e.g. iPhone6]
35+
- OS: [e.g. iOS8.1]
36+
- Browser [e.g. stock browser, safari]
37+
- Version [e.g. 22]
3638

3739
**Additional context**
3840
Add any other context about the problem here.

.github/ISSUE_TEMPLATE/feature_request.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
---
22
name: Feature request
33
about: Suggest an idea for this project
4-
title: ''
5-
labels: ''
6-
assignees: ''
7-
4+
title: ""
5+
labels: ""
6+
assignees: ""
87
---
98

109
**Is your feature request related to a problem? Please describe.**

.github/workflows/npm-publish.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44
release:
55
types: [published]
66
permissions:
7-
id-token: write # Required for OIDC
7+
id-token: write # Required for OIDC
88
contents: read
99

1010
jobs:
@@ -15,8 +15,8 @@ jobs:
1515

1616
- uses: actions/setup-node@v4
1717
with:
18-
node-version: '23.x'
19-
registry-url: 'https://registry.npmjs.org'
18+
node-version: "23.x"
19+
registry-url: "https://registry.npmjs.org"
2020

2121
# Ensure npm 11.5.1 or later is installed
2222
- name: Update npm

.github/workflows/test.yml

Lines changed: 24 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,31 @@ on:
44
push:
55
branches:
66
- main
7-
paths:
7+
paths:
8+
[
9+
"**.js",
10+
"**.ts",
11+
"**.jsx",
12+
"**.tsx",
13+
"**.json",
14+
"**.md",
15+
"**.yml",
16+
"**.yaml",
17+
]
818
pull_request:
919
branches:
1020
- main
21+
paths:
22+
[
23+
"**.js",
24+
"**.ts",
25+
"**.jsx",
26+
"**.tsx",
27+
"**.json",
28+
"**.md",
29+
"**.yml",
30+
"**.yaml",
31+
]
1132

1233
jobs:
1334
format:
@@ -20,11 +41,11 @@ jobs:
2041
- name: Setup Node.js
2142
uses: actions/setup-node@v6
2243
with:
23-
node-version: '20'
44+
node-version: "20"
2445

2546
- name: Install dependencies
2647
run: |
2748
npm ci
2849
2950
- name: Run prettier + linting + tests
30-
run: npm test
51+
run: npm test

.prettierignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
node_modules
22
build
3-
.github
3+
prettier.config.ts

0 commit comments

Comments
 (0)