Skip to content

Commit 57f26d5

Browse files
committed
Fix CI aswell, f it
1 parent 51a5a31 commit 57f26d5

File tree

2 files changed

+29
-29
lines changed

2 files changed

+29
-29
lines changed

.github/workflows/code-quality.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-22.04
1010
strategy:
1111
matrix:
12-
node-version: latest
12+
node-version: [latest]
1313
steps:
1414
- uses: actions/checkout@v4
1515
- name: Install pnpm
@@ -30,7 +30,7 @@ jobs:
3030
runs-on: ubuntu-22.04
3131
strategy:
3232
matrix:
33-
node-version: latest
33+
node-version: [latest]
3434
steps:
3535
- uses: actions/checkout@v4
3636
- name: Install pnpm
@@ -52,7 +52,7 @@ jobs:
5252
runs-on: ubuntu-22.04
5353
strategy:
5454
matrix:
55-
node-version: latest
55+
node-version: [latest]
5656
steps:
5757
- uses: actions/checkout@v4
5858
- name: Install pnpm

.github/workflows/publish-package.yml

Lines changed: 26 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -7,29 +7,29 @@ on:
77

88
jobs:
99
publish:
10-
name: Format
11-
runs-on: ubuntu-22.04
12-
strategy:
13-
matrix:
14-
node-version: latest
15-
steps:
16-
- uses: actions/checkout@v4
17-
- name: Install pnpm
18-
uses: pnpm/action-setup@v4
19-
with:
20-
version: 10
21-
- name: Use Node.js ${{ matrix.node-version }}
22-
uses: actions/setup-node@v4
23-
with:
24-
node-version: ${{ matrix.node-version }}
25-
cache: 'pnpm'
26-
- name: Install dependencies
27-
run: pnpm install --frozen-lockfile
28-
- name: Create Release Pull Request or Publish to npm
29-
id: changesets
30-
uses: changesets/action@v1
31-
with:
32-
publish: pnpm changeset publish
33-
env:
34-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
35-
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
10+
name: Format
11+
runs-on: ubuntu-22.04
12+
strategy:
13+
matrix:
14+
node-version: [latest]
15+
steps:
16+
- uses: actions/checkout@v4
17+
- name: Install pnpm
18+
uses: pnpm/action-setup@v4
19+
with:
20+
version: 10
21+
- name: Use Node.js ${{ matrix.node-version }}
22+
uses: actions/setup-node@v4
23+
with:
24+
node-version: ${{ matrix.node-version }}
25+
cache: 'pnpm'
26+
- name: Install dependencies
27+
run: pnpm install --frozen-lockfile
28+
- name: Create Release Pull Request or Publish to npm
29+
id: changesets
30+
uses: changesets/action@v1
31+
with:
32+
publish: pnpm changeset publish
33+
env:
34+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
35+
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}

0 commit comments

Comments
 (0)