Skip to content

Commit 835b750

Browse files
authored
Merge pull request #6 from CERN/feature/fix-memo-deps-and-cleanup-effects
CI checks + dependency & code quality improvements
2 parents aba9021 + 2d4e5f9 commit 835b750

File tree

6 files changed

+763
-591
lines changed

6 files changed

+763
-591
lines changed

.github/workflows/ci.yml

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
branches: [ main ]
6+
pull_request:
7+
8+
permissions:
9+
contents: read
10+
11+
concurrency:
12+
group: ci-${{ github.ref }}
13+
cancel-in-progress: true
14+
15+
jobs:
16+
ci:
17+
runs-on: ubuntu-latest
18+
env:
19+
CI: true
20+
steps:
21+
- name: Checkout
22+
uses: actions/checkout@v4
23+
24+
- name: Setup Node
25+
uses: actions/setup-node@v4
26+
with:
27+
node-version: 24
28+
cache: npm
29+
30+
- name: Install deps
31+
run: npm ci
32+
33+
- name: Lint
34+
run: npm run lint
35+
36+
- name: Build
37+
run: npm run build
38+
39+
- name: Coverage
40+
run: npm run coverage

.nvmrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
24

0 commit comments

Comments
 (0)