Skip to content

Commit ad3409a

Browse files
committed
Test changes
Signed-off-by: Alexander Brandes <mc.cache@web.de>
1 parent 3ea1239 commit ad3409a

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

.github/workflows/ci.yaml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
pull_request:
6+
7+
permissions:
8+
contents: read
9+
10+
jobs:
11+
test:
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: actions/checkout@v6
15+
16+
- uses: actions/setup-node@v6
17+
with:
18+
node-version: 24
19+
cache: npm
20+
21+
- run: npm ci
22+
- run: npm test

0 commit comments

Comments
 (0)