diff --git a/.github/workflows/audit.yml b/.github/workflows/audit.yml index 713c0f8..2460f58 100644 --- a/.github/workflows/audit.yml +++ b/.github/workflows/audit.yml @@ -10,7 +10,9 @@ jobs: with: node-version: 24.x - name: Audit Root Level - run: npm audit --audit-level=high + run: | + npm ci + npm audit --audit-level=high --omit=dev - name: Audit Client run: cd client && npm audit --audit-level=high - name: Audit Auth Service diff --git a/client/src/components/PushNotificationToast.vue b/client/src/components/PushNotificationToast.vue index d2dafee..969dce8 100644 --- a/client/src/components/PushNotificationToast.vue +++ b/client/src/components/PushNotificationToast.vue @@ -1,10 +1,10 @@