File tree Expand file tree Collapse file tree 1 file changed +26
-0
lines changed
Expand file tree Collapse file tree 1 file changed +26
-0
lines changed Original file line number Diff line number Diff line change 1+ name : Quality # Don't change this value without updating release.yml; name must match to chain workflows
2+
3+ on :
4+ push : # Run this workflow for all branch pushes
5+ workflow_dispatch : # Allows manual triggering of this workflow
6+
7+ jobs :
8+ quality :
9+ runs-on : ubuntu-latest
10+ if : ${{ !contains(github.event.head_commit.message, '[ci-skip]') }}
11+ steps :
12+ - uses : actions/checkout@v6
13+ - uses : actions/setup-node@v6
14+ with :
15+ node-version : 24
16+ registry-url : ' https://registry.npmjs.org'
17+ - name : Update npm
18+ run : npm install -g npm@latest
19+ - name : Install npm dependencies
20+ run : npm ci
21+ env :
22+ HUSKY : 0
23+ - name : Run quality checks
24+ run : npm run quality
25+ - name : Build project
26+ run : npm run build
You can’t perform that action at this time.
0 commit comments