Skip to content

Commit d44a941

Browse files
Use correct node/pnpm versions in CI (#424)
* Use correct node/pnpm versions in CI * Update tsconfig.declarations.json * Update .prettierignore
1 parent 3dae54b commit d44a941

File tree

5 files changed

+12
-10
lines changed

5 files changed

+12
-10
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,11 @@ jobs:
2121
- uses: actions/checkout@v3
2222
- uses: pnpm/action-setup@v4
2323
with:
24-
version: 9
24+
version: 10
2525
- name: Install Node
2626
uses: actions/setup-node@v3
2727
with:
28-
node-version: 18
28+
node-version: 20
2929
cache: pnpm
3030
- name: Install Dependencies
3131
run: pnpm install --frozen-lockfile
@@ -43,10 +43,10 @@ jobs:
4343
- uses: actions/checkout@v3
4444
- uses: pnpm/action-setup@v4
4545
with:
46-
version: 9
46+
version: 10
4747
- uses: actions/setup-node@v3
4848
with:
49-
node-version: 18
49+
node-version: 20
5050
cache: pnpm
5151
- name: Install Dependencies
5252
run: pnpm install --no-lockfile
@@ -78,11 +78,11 @@ jobs:
7878
- uses: actions/checkout@v3
7979
- uses: pnpm/action-setup@v4
8080
with:
81-
version: 9
81+
version: 10
8282
- name: Install Node
8383
uses: actions/setup-node@v3
8484
with:
85-
node-version: 18
85+
node-version: 20
8686
cache: pnpm
8787
- name: Install Dependencies
8888
run: pnpm install --frozen-lockfile

.github/workflows/plan-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,10 +53,10 @@ jobs:
5353
ref: 'main'
5454
- uses: pnpm/action-setup@v4
5555
with:
56-
version: 9
56+
version: 10
5757
- uses: actions/setup-node@v4
5858
with:
59-
node-version: 18
59+
node-version: 20
6060
cache: pnpm
6161
- run: pnpm install --frozen-lockfile
6262
- name: "Generate Explanation and Prep Changelogs"

.github/workflows/publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,10 @@ jobs:
3030
- uses: actions/checkout@v4
3131
- uses: pnpm/action-setup@v4
3232
with:
33-
version: 9
33+
version: 10
3434
- uses: actions/setup-node@v4
3535
with:
36-
node-version: 18
36+
node-version: 20
3737
# This creates an .npmrc that reads the NODE_AUTH_TOKEN environment variable
3838
registry-url: 'https://registry.npmjs.org'
3939
cache: pnpm

.prettierignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,4 @@
1111
/pnpm-lock.yaml
1212
ember-cli-update.json
1313
*.html
14+
CHANGELOG.md

tsconfig.declarations.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"extends": "./tsconfig.json",
33
"compilerOptions": {
4+
"declaration": true,
45
"declarationDir": "declarations",
56
"emitDeclarationOnly": true,
67
"noEmit": false,

0 commit comments

Comments
 (0)