We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2995920 commit d5d8995Copy full SHA for d5d8995
2 files changed
.github/workflows/ci.yml
@@ -0,0 +1,29 @@
1
+name: CI
2
+
3
+on: [push]
4
5
+jobs:
6
+ check:
7
+ runs-on: ubuntu-latest
8
9
+ steps:
10
+ - uses: actions/checkout@v3
11
12
+ - uses: actions/setup-node@v3
13
+ with:
14
+ node-version: 18
15
+ cache: "npm"
16
17
+ - run: npm ci
18
19
+ - name: Lint
20
+ run: npm run lint
21
22
+ - name: Check types
23
+ run: npm run check-types
24
25
+ - name: Tests
26
+ run: npm run test
27
28
+ - name: Build
29
+ run: npm run build
.npmignore
@@ -1,10 +1,10 @@
.github
.husky
+assets
coverage
src
node_modules
-tests
.eslintignore
.eslintrc
.gitignore
@@ -13,4 +13,6 @@ tests
.prettierrc
dts-bundle-generator.config.ts
tsconfig.json
+tsconfig.cjs.json
+tsconfig.esm.json
vite.config.ts
0 commit comments