Skip to content

Commit

Permalink
Npm clean install
Browse files Browse the repository at this point in the history
  • Loading branch information
cqnykamp committed Aug 14, 2024
1 parent 588d462 commit 6a06a69
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 15 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/client.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ jobs:
- uses: actions/setup-node@v4
with:
node-version: 20
- name: Npm install
run: npm install
- name: Npm clean install
run: npm ci
working-directory: ./client
- name: Build
run: npm run build
Expand All @@ -26,8 +26,8 @@ jobs:
- uses: actions/setup-node@v4
with:
node-version: 20
- name: Npm install
run: npm install
- name: Npm clean install
run: npm ci
working-directory: ./client
- name: Lint
run: npx eslint
Expand All @@ -40,9 +40,9 @@ jobs:
- uses: actions/setup-node@v4
with:
node-version: 20
- name: Npm install
run: npm install
- name: Npm clean install
run: npm ci
working-directory: ./client
- name: Prettier
run: npx prettier . --check
working-directory: ./client
working-directory: ./client
16 changes: 8 additions & 8 deletions .github/workflows/server.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ jobs:
- uses: actions/setup-node@v4
with:
node-version: 20
- name: Npm install
run: npm install
- name: Npm clean install
run: npm ci
working-directory: ./server
- name: Build
run: npm run build
Expand All @@ -26,8 +26,8 @@ jobs:
- uses: actions/setup-node@v4
with:
node-version: 20
- name: Npm install
run: npm install
- name: Npm clean install
run: npm ci
working-directory: ./server
- name: Lint
run: npx eslint
Expand All @@ -40,8 +40,8 @@ jobs:
- uses: actions/setup-node@v4
with:
node-version: 20
- name: Npm install
run: npm install
- name: Npm clean install
run: npm ci
working-directory: ./server
- name: Prettier
run: npx prettier . --check
Expand All @@ -63,8 +63,8 @@ jobs:
run: |
sudo /etc/init.d/mysql start
mysql -e "CREATE DATABASE IF NOT EXISTS db;" -uroot -proot
- name: Npm install
run: npm install
- name: Npm clean install
run: npm ci
working-directory: ./server
- name: Apply migrations
run: npx prisma migrate dev
Expand Down
1 change: 1 addition & 0 deletions client/.prettierignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
dist/
dist_local/
multi-reporter-config.json

0 comments on commit 6a06a69

Please sign in to comment.