We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5e0755b commit 926f42fCopy full SHA for 926f42f
.editorconfig
@@ -13,3 +13,7 @@ insert_final_newline = true
13
[*.md]
14
indent_style = space
15
indent_size = 4
16
+
17
+[*.yml]
18
+indent_style = space
19
+indent_size = 2
.github/workflows/ci.yml
@@ -0,0 +1,19 @@
1
+name: CI
2
3
+on:
4
+ push:
5
+ branches: ["master"]
6
+ pull_request:
7
8
+ workflow_dispatch:
9
10
+jobs:
11
+ lint:
12
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v4
+ - uses: actions/setup-node@v4
+ with:
+ node-version-file: "package.json"
+ - run: npm ci --no-fund
+ - run: npm run lint
0 commit comments