CI: Little tweaks to web (#4488)

This commit is contained in:
tooomm 2021-12-08 05:01:46 +01:00 committed by GitHub
parent 1f15445c69
commit 86881bbbc3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 6 deletions

View file

@ -45,11 +45,11 @@ jobs:
cache-dependency-path: 'webclient/package-lock.json' cache-dependency-path: 'webclient/package-lock.json'
- name: Install dependencies - name: Install dependencies
run: npm install run: npm clean-install
- name: Build app
run: npm run build
- name: Test app - name: Test app
run: npm run test run: npm run test
- name: Build app
if: always()
run: npm run build

View file

@ -28,7 +28,7 @@ jobs:
cache-dependency-path: 'webclient/package-lock.json' cache-dependency-path: 'webclient/package-lock.json'
- name: Install ESLint - name: Install ESLint
run: npm install --ignore-scripts run: npm clean-install --ignore-scripts
- name: Run ESLint - name: Run ESLint
run: npm run lint run: npm run lint