File tree Expand file tree Collapse file tree 1 file changed +30
-0
lines changed
Expand file tree Collapse file tree 1 file changed +30
-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+ pull_request : # Run this workflow for all pull request changes
5+ types :
6+ - opened
7+ - reopened
8+ - edited
9+ workflow_dispatch : # Allows manual triggering of this workflow
10+
11+ jobs :
12+ quality :
13+ runs-on : ubuntu-latest
14+ if : ${{ !contains(github.event.head_commit.message, '[ci-skip]') }}
15+ steps :
16+ - uses : actions/checkout@v6
17+ - uses : actions/setup-node@v6
18+ with :
19+ node-version : 24
20+ registry-url : ' https://registry.npmjs.org'
21+ - name : Update npm
22+ run : npm install -g npm@latest
23+ - name : Install npm dependencies
24+ run : npm ci
25+ env :
26+ HUSKY : 0
27+ - name : Run quality checks
28+ run : npm run quality
29+ - name : Build project
30+ run : npm run build
You can’t perform that action at this time.
0 commit comments