CI: Little tweaks to web (#4488)
This commit is contained in:
parent
1f15445c69
commit
86881bbbc3
2 changed files with 6 additions and 6 deletions
10
.github/workflows/web-build.yml
vendored
10
.github/workflows/web-build.yml
vendored
|
@ -45,11 +45,11 @@ jobs:
|
|||
cache-dependency-path: 'webclient/package-lock.json'
|
||||
|
||||
- name: Install dependencies
|
||||
run: npm install
|
||||
run: npm clean-install
|
||||
|
||||
- name: Build app
|
||||
run: npm run build
|
||||
|
||||
- name: Test app
|
||||
run: npm run test
|
||||
|
||||
- name: Build app
|
||||
if: always()
|
||||
run: npm run build
|
||||
|
||||
|
|
2
.github/workflows/web-lint.yml
vendored
2
.github/workflows/web-lint.yml
vendored
|
@ -28,7 +28,7 @@ jobs:
|
|||
cache-dependency-path: 'webclient/package-lock.json'
|
||||
|
||||
- name: Install ESLint
|
||||
run: npm install --ignore-scripts
|
||||
run: npm clean-install --ignore-scripts
|
||||
|
||||
- name: Run ESLint
|
||||
run: npm run lint
|
||||
|
|
Loading…
Reference in a new issue