diff --git a/.github/workflows/lint-check.yml b/.github/workflows/lint-check.yml index 781bbf25..3c0799e4 100644 --- a/.github/workflows/lint-check.yml +++ b/.github/workflows/lint-check.yml @@ -25,9 +25,7 @@ jobs: cache-dependency-path: ./angular-client/package-lock.json - name: Install modules working-directory: ./angular-client - run: | - ls -la - npm ci + run: npm install - name: Run linting check working-directory: ./angular-client run: npm run lint --max-warnings=0 diff --git a/.github/workflows/prettier-check.yml b/.github/workflows/prettier-check.yml index 76bebd7b..09bd6387 100644 --- a/.github/workflows/prettier-check.yml +++ b/.github/workflows/prettier-check.yml @@ -25,9 +25,7 @@ jobs: cache-dependency-path: ./angular-client/package-lock.json - name: Install modules working-directory: ./angular-client - run: | - ls -la - npm ci + run: npm install - name: Run prettier check working-directory: ./angular-client run: npm run prettier-check