Skip to content

Commit 71fdbaf

Browse files
committed
updates
1 parent 02a46d6 commit 71fdbaf

File tree

2 files changed

+12
-3
lines changed

2 files changed

+12
-3
lines changed

.github/workflows/ci.yml

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ on:
66

77
env:
88
NODE_VERSION: '18'
9+
PNPM_VERSION: '10'
910

1011
jobs:
1112
setup:
@@ -17,9 +18,11 @@ jobs:
1718
with:
1819
node-version: ${{ env.NODE_VERSION }}
1920
cache: 'pnpm'
20-
- uses: pnpm/action-setup@v4
21+
- name: Install pnpm
22+
uses: pnpm/action-setup@v4
2123
with:
22-
version: 10
24+
version: ${{ env.PNPM_VERSION }}
25+
run_install: false
2326

2427
lint:
2528
name: Lint
@@ -32,6 +35,8 @@ jobs:
3235
node-version: ${{ env.NODE_VERSION }}
3336
cache: 'pnpm'
3437
- uses: pnpm/action-setup@v4
38+
with:
39+
version: ${{ env.PNPM_VERSION }}
3540
- run: pnpm install --frozen-lockfile
3641
- run: pnpm lint
3742

@@ -46,6 +51,8 @@ jobs:
4651
node-version: ${{ env.NODE_VERSION }}
4752
cache: 'pnpm'
4853
- uses: pnpm/action-setup@v4
54+
with:
55+
version: ${{ env.PNPM_VERSION }}
4956
- run: pnpm install --frozen-lockfile
5057
- run: pnpm test:coverage
5158

@@ -65,6 +72,8 @@ jobs:
6572
node-version: ${{ env.NODE_VERSION }}
6673
cache: 'pnpm'
6774
- uses: pnpm/action-setup@v4
75+
with:
76+
version: ${{ env.PNPM_VERSION }}
6877
- run: pnpm install --frozen-lockfile
6978
- run: pnpm build
7079
- uses: actions/upload-artifact@v3

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Usability, consistency, and performance are key focuses of trello.js, and it als
2626

2727
## Installation
2828

29-
**Node.js 20.0.0 or newer is required.**
29+
**Node.js 18.0.0 or newer is required.**
3030

3131
Install with the npm:
3232

0 commit comments

Comments
 (0)