Skip to content

Commit 64ac191

Browse files
committed
fix: fix lint staged (again!)
1 parent 85c2846 commit 64ac191

File tree

4 files changed

+5
-11
lines changed

4 files changed

+5
-11
lines changed

.github/workflows/actions.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,6 @@ jobs:
66
steps:
77
- uses: actions/setup-node@v6
88
- uses: actions/checkout@v6
9-
with:
10-
node-version: '20'
11-
cache: 'npm'
129
- run: npm i
1310
- run: npm run lint
1411
- run: npm test

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "ts-hajime",
33
"description": "Delightfully bootstraps TypeScript npm libraries.",
4-
"version": "0.3.4",
4+
"version": "0.3.5",
55
"scripts": {
66
"setup": "rm -rf node_modules && npm i && husky",
77
"prepublishOnly": "npm run build",
@@ -15,7 +15,7 @@
1515
},
1616
"files": ["./bin", "./template", "./template/.gitignore"],
1717
"lint-staged": {
18-
"*.{ts}": ["npm run lint"]
18+
"*.ts": ["npm run lint"]
1919
},
2020
"type": "module",
2121
"main": "./dist/index.cjs",

template/.github/workflows/actions.yml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,8 @@ jobs:
44
build_test:
55
runs-on: ubuntu-latest
66
steps:
7-
- uses: actions/checkout@v4
8-
- uses: actions/setup-node@v4
9-
with:
10-
node-version: '20'
11-
cache: 'npm'
7+
- uses: actions/checkout@v6
8+
- uses: actions/setup-node@v6
129
- run: npm i
1310
- run: npm run lint
1411
- run: npm test

template/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
},
1616
"files": ["bin", "dist"],
1717
"lint-staged": {
18-
"*.{ts}": ["npm run lint"]
18+
"*.ts": ["npm run lint"]
1919
},
2020
"type": "module",
2121
"main": "./dist/index.cjs",

0 commit comments

Comments
 (0)