Skip to content

Commit

Permalink
[workflows] changed to npm ci instead of install and added registry-url
Browse files Browse the repository at this point in the history
  • Loading branch information
ArtieReus committed Apr 10, 2024
1 parent 7cf6a9b commit 48be65f
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/build&deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,18 +37,19 @@ jobs:
uses: actions/checkout@v4

- name: Setup node
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 18
registry-url: https://npm.pkg.github.com/

- name: build libs
run: |
npm --prefix ../../ install
npm --prefix ../../ run build-libs
- name: Install dependencies
- name: Clean install of all existing dependencies
run: |
npm install
npm ci
- name: Build app
run: npm run build

0 comments on commit 48be65f

Please sign in to comment.