Skip to content

Commit 863d044

Browse files
committed
chore: code cleanup in action workflows
1 parent 980d864 commit 863d044

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

.github/workflows/go-lint.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,15 @@ on:
1212
- 'go/**'
1313
- '.github/workflows/go-*.yml'
1414

15-
permissions:
16-
contents: read
17-
pull-requests: read
18-
checks: write
19-
2015
jobs:
2116
golangci:
22-
name: lint
17+
name: Lint
2318
runs-on: ubuntu-latest
19+
permissions:
20+
contents: read
21+
pull-requests: read
22+
checks: write
23+
2424
steps:
2525
- uses: actions/checkout@v4
2626

.github/workflows/typescript-lint.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,17 +17,17 @@ jobs:
1717

1818
steps:
1919
- uses: actions/checkout@v4
20-
20+
2121
- name: Setup Node.js
2222
uses: actions/setup-node@v4
2323
with:
2424
node-version: '20'
25-
25+
2626
- name: Setup pnpm
2727
uses: pnpm/action-setup@v2
2828
with:
2929
version: '9'
30-
30+
3131
- name: Install dependencies
3232
working-directory: typescript
3333
run: pnpm install
@@ -38,4 +38,4 @@ jobs:
3838

3939
- name: Type check
4040
working-directory: typescript
41-
run: pnpm tsc --noEmit
41+
run: pnpm tsc --noEmit

.github/workflows/typescript-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,4 +38,4 @@ jobs:
3838

3939
- name: Run tests
4040
working-directory: typescript
41-
run: pnpm test
41+
run: pnpm test

0 commit comments

Comments
 (0)