Skip to content

Commit

Permalink
issue #66: install specific version of npm inside gh pages deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
ThomasCardin committed Jan 17, 2024
1 parent d76c462 commit 0b813af
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/gh-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,11 @@ jobs:
- uses: actions/setup-node@v3
with:
node-version: ${{ env.NODE_VERSION }}
npm-version: '9.8.1'

- name: Install specific NPM version
run: |
npm install -g [email protected]
npm --version
- name: Install Dependencies
run: npm install
Expand All @@ -29,7 +33,7 @@ jobs:
env:
REACT_APP_BACKEND_URL: ${{ secrets.REACT_APP_BACKEND_URL }}

- name: Deploy to GitHub Pages
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
Expand Down

0 comments on commit 0b813af

Please sign in to comment.