Skip to content

Commit 7bfdd7c

Browse files
ci: Add a simple quality workflow which should run on all branches
1 parent 05478d0 commit 7bfdd7c

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

.github/workflows/quality.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
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

0 commit comments

Comments
 (0)