Skip to content

Commit 2f4ddfc

Browse files
chore: use pnpmm action instead of global install
1 parent 7769225 commit 2f4ddfc

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/gh-pages.yml

+6-2
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,12 @@ jobs:
1515
- uses: actions/setup-node@v4
1616
with:
1717
node-version: '20'
18-
- run: npm install -g pnpm@9
19-
- run: pnpm install
18+
- uses: pnpm/action-setup@v4
19+
- uses: actions/setup-node@v4
20+
with:
21+
cache: 'pnpm'
22+
node-version: 20
23+
- run: pnpm i --frozen-lockfile
2024
- 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
2125
- name: Deploy
2226
uses: peaceiris/actions-gh-pages@v3

0 commit comments

Comments
 (0)