We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a2c5656 commit 42a6dbbCopy full SHA for 42a6dbb
.github/workflows/ci.yml
@@ -1,3 +1,15 @@
1
+ rfc011-audit:
2
+ runs-on: ubuntu-latest
3
+ timeout-minutes: 10
4
+ steps:
5
+ - name: Checkout
6
+ uses: actions/checkout@v5
7
+ - name: Setup project
8
+ uses: ./.github/actions/setup-project
9
+ with:
10
+ CACHE_VERSION: ${{ secrets.CACHE_VERSION }}
11
+ - name: Run RFC 011 audit
12
+ run: npm run rfc011-audit
13
name: CI
14
15
on:
package.json
@@ -148,6 +148,7 @@
148
"@radix-ui/react-focus-scope": "^1.0.4"
149
},
150
"scripts": {
151
+ "rfc011-audit": "node scripts/rfc011-audit.js",
152
"build": "npm-run-all build:updates build:next build:server",
153
"build:e2e": "cross-env NODE_ENV=development OC_ENV=e2e npm run build",
154
"build:clean": "shx rm -rf dist .next",
0 commit comments