Skip to content

Commit

Permalink
Merge pull request #934 from MehulKChaudhari/fix--deployment
Browse files Browse the repository at this point in the history
fix: update GitHub Pages workflow to use Node.js 20 and pnpm 9
  • Loading branch information
mansona authored Jan 28, 2025
2 parents c5d03c5 + bd83d33 commit d06dce1
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions .github/workflows/gh-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,14 @@ jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
- uses: actions/checkout@v4

- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v4
with:
node-version: '14'
- run: npm install -g npm@7
- run: npm install
cache: 'pnpm'
node-version: 20
- run: pnpm i --frozen-lockfile
- 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
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
Expand Down

0 comments on commit d06dce1

Please sign in to comment.