2 parents acdf00c + 8a1106b commit 63ec856Copy full SHA for 63ec856
2 files changed
.editorconfig
@@ -0,0 +1,9 @@
1
+root = true
2
+
3
+[*]
4
+indent_style = space
5
+indent_size = 2
6
+charset = utf-8
7
+end_of_line = lf
8
+insert_final_newline = true
9
+trim_trailing_whitespace = true
.github/workflows/ci.yml
@@ -0,0 +1,15 @@
+name: CI
+on:
+ push:
+ branches: [main]
+ pull_request:
+jobs:
+ test:
+ runs-on: ubuntu-latest
+ steps:
10
+ - uses: actions/checkout@v4
11
+ - uses: actions/setup-node@v4
12
+ with:
13
+ node-version: 20
14
+ - run: npm ci
15
+ - run: npm test
0 commit comments