Skip to content

Commit d06dce1

Browse files
authored
Merge pull request #934 from MehulKChaudhari/fix--deployment
fix: update GitHub Pages workflow to use Node.js 20 and pnpm 9
2 parents c5d03c5 + bd83d33 commit d06dce1

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

.github/workflows/gh-pages.yml

+7-5
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,14 @@ jobs:
1010
deploy:
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v2
14-
- uses: actions/setup-node@v2
13+
- uses: actions/checkout@v4
14+
15+
- uses: pnpm/action-setup@v4
16+
- uses: actions/setup-node@v4
1517
with:
16-
node-version: '14'
17-
- run: npm install -g npm@7
18-
- run: npm install
18+
cache: 'pnpm'
19+
node-version: 20
20+
- run: pnpm i --frozen-lockfile
1921
- run: npx lint-to-the-future output -o lttfOutput --rootUrl ember-api-docs --previous-results https://ember-learn.github.io/ember-api-docs/data.json
2022
- name: Deploy
2123
uses: peaceiris/actions-gh-pages@v3

0 commit comments

Comments
 (0)