Skip to content

Commit e35e997

Browse files
committed
Fix pnpm build
1 parent c85480f commit e35e997

File tree

3 files changed

+12
-7
lines changed

3 files changed

+12
-7
lines changed

.changeset/tender-penguins-hang.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"scan-chart": patch
3+
---
4+
5+
Fix pnpm build

.github/workflows/main.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,20 +2,20 @@ name: CI
22
on:
33
push:
44
branches:
5-
- "**"
5+
- '**'
66

77
jobs:
88
build:
99
runs-on: ubuntu-latest
1010
steps:
1111
- uses: actions/checkout@v3
12-
- uses: pnpm/action-setup@v2
12+
- uses: pnpm/action-setup@v4
1313
with:
1414
version: 7
1515
- uses: actions/setup-node@v3
1616
with:
1717
node-version: 18.x
18-
cache: "pnpm"
18+
cache: 'pnpm'
1919

2020
- run: pnpm install --no-frozen-lockfile
2121
- run: pnpm run lint && pnpm run build

.github/workflows/publish.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
name: Publish
22
on:
33
workflow_run:
4-
workflows: ["CI"]
4+
workflows: ['CI']
55
types:
66
- completed
77
push:
88
branches:
9-
- "master"
9+
- 'master'
1010

1111
concurrency: ${{ github.workflow }}-${{ github.ref }}
1212

@@ -16,13 +16,13 @@ jobs:
1616
runs-on: ubuntu-latest
1717
steps:
1818
- uses: actions/checkout@v3
19-
- uses: pnpm/action-setup@v2
19+
- uses: pnpm/action-setup@v4
2020
with:
2121
version: 7
2222
- uses: actions/setup-node@v3
2323
with:
2424
node-version: 18.x
25-
cache: "pnpm"
25+
cache: 'pnpm'
2626

2727
- run: pnpm install --no-frozen-lockfile
2828
- name: Create Release Pull Request or Publish

0 commit comments

Comments
 (0)