Skip to content

Commit 7769225

Browse files
chore: switch to pnpm for dependency management in github pages workflow
1 parent f50f4fe commit 7769225

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

.github/workflows/gh-pages.yml

+6-5
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,13 @@ 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: actions/setup-node@v4
1516
with:
16-
node-version: '14'
17-
- run: npm install -g npm@7
18-
- run: npm install
17+
node-version: '20'
18+
- run: npm install -g pnpm@9
19+
- run: pnpm install
1920
- 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
2021
- name: Deploy
2122
uses: peaceiris/actions-gh-pages@v3

0 commit comments

Comments
 (0)