Skip to content

Commit

Permalink
Updated deploy workflow config file
Browse files Browse the repository at this point in the history
to use `npm ci` instead of `npm install` for installing
dependencies.
  • Loading branch information
rmanaem committed Mar 5, 2024
1 parent e99744a commit 12f4b0f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
run: |
echo -e "NB_API_QUERY_URL=${{ vars.NB_API_QUERY_URL }}\nNB_IS_FEDERATION_API=${{ vars.NB_IS_FEDERATION_API }}" > .env
- name: Install dependencies
run: npm install
run: npm ci
- name: Build
run: npm run build
- name: Setup Pages
Expand Down

0 comments on commit 12f4b0f

Please sign in to comment.