diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b52f62dc..fe9b6b06 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -109,6 +109,9 @@ jobs: ENABLE_NETWORK_TESTS: "1" run: npm run test + - name: Install web-app dependencies + run: npm run app:install + - name: Run web app coverage run: npm run app:test:coverage @@ -229,6 +232,9 @@ jobs: ENABLE_NETWORK_TESTS: "1" run: npm run test + - name: Install web-app dependencies + run: npm run app:install + - name: Run web app coverage run: npm run app:test:coverage diff --git a/.github/workflows/publish-npm.yml b/.github/workflows/publish-npm.yml index 8c94307d..ac7079f2 100644 --- a/.github/workflows/publish-npm.yml +++ b/.github/workflows/publish-npm.yml @@ -48,15 +48,15 @@ jobs: - name: Run tests run: npm run test + - name: Install web-app dependencies + run: npm run app:install + - name: Run web app coverage run: npm run app:test:coverage - name: Run docs security checks run: npm run security:docs - - name: Install web-app dependencies - run: npm run app:install - - name: Build web app run: npm run app:build