You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
CI runs [zizmor](https://docs.zizmor.sh/) against the repository's GitHub Actions workflows. The shared policy lives in `.github/zizmor.yml`, and the `zizmor` task uses the same pedantic persona as CI.
140
+
141
+
You may run it locally by [installing `zizmor`](https://docs.zizmor.sh/installation/) and running:
142
+
143
+
```bash
144
+
pnpm vp run zizmor
145
+
```
146
+
147
+
Some audits resolve action refs and vulnerability metadata through GitHub. To run those online checks locally, authenticate with the GitHub CLI and pass its token:
148
+
149
+
```bash
150
+
GH_TOKEN="$(gh auth token)" pnpm vp run zizmor
151
+
```
152
+
153
+
To fix audit findings automatically, run:
154
+
155
+
```bash
156
+
GH_TOKEN="$(gh auth token)" pnpm vp run zizmor:fix
157
+
```
158
+
136
159
### Clearing caches during development
137
160
138
161
Nitro persists `defineCachedEventHandler` results to disk at `.nuxt/cache/nitro/`. This cache **survives dev server restarts**. If you're iterating on a cached API route and want fresh results, delete the relevant cache directory:
0 commit comments