File tree Expand file tree Collapse file tree 2 files changed +83
-1
lines changed Expand file tree Collapse file tree 2 files changed +83
-1
lines changed Original file line number Diff line number Diff line change
1
+ name : CI-unitest
2
+
3
+ on :
4
+ push :
5
+ branches :
6
+ - main
7
+ - major
8
+ - minor
9
+ # Only consider those paths to trigger the action
10
+ paths :
11
+ - " packages/**"
12
+ - " package.json"
13
+ - " *.lock"
14
+ - " .yarnrc.yml"
15
+ - " tsconfig.base.json"
16
+ - " .prettier*"
17
+ - " .github/**"
18
+
19
+ pull_request :
20
+ branches :
21
+ - main
22
+ - major
23
+ - minor
24
+ types :
25
+ - opened
26
+ - synchronize
27
+ - reopened
28
+ # Only consider those paths to trigger the action
29
+ paths :
30
+ - " packages/**"
31
+ - " package.json"
32
+ - " *.lock"
33
+ - " .yarnrc.yml"
34
+ - " tsconfig.base.json"
35
+ - " .prettier*"
36
+ - " .github/**"
37
+ jobs :
38
+ test :
39
+ runs-on : ubuntu-latest
40
+ strategy :
41
+ matrix :
42
+ node-version : [18.x]
43
+ steps :
44
+ - uses : actions/checkout@v4
45
+
46
+ - name : Use Node.js ${{ matrix.node-version }}
47
+ uses : actions/setup-node@v4
48
+ with :
49
+ node-version : ${{ matrix.node-version }}
50
+
51
+ - name : 📥 Install Dependencies
52
+ run : yarn --frozen-lockfile
53
+
54
+ - name : Linter
55
+ run : |
56
+ yarn lint
57
+
58
+ - name : Unit tests
59
+ run : |
60
+ yarn test
61
+
62
+ - name : Build
63
+ run : |
64
+ yarn build
Original file line number Diff line number Diff line change 1
1
# @hyperse/tailwind-layer
2
2
3
+ <p align =" left " >
4
+ <a aria-label =" Build " href =" https://github.com/hyperse-io/tailwind-layer/actions?query=workflow%3ACI " >
5
+ <img alt="build" src="https://img.shields.io/github/actions/workflow/status/hyperse-io/tailwind-layer/ci-integrity.yml?branch=main&label=ci&logo=github&style=flat-quare&labelColor=000000" />
6
+ </a >
7
+ <a aria-label =" stable version " href =" https://www.npmjs.com/package/@hyperse/tailwind-layer " >
8
+ <img alt="stable version" src="https://img.shields.io/npm/v/%40hyperse%2Ftailwind-layer?branch=main&label=version&logo=npm&style=flat-quare&labelColor=000000" />
9
+ </a >
10
+ <a >
11
+ <img alt="LoC" src="https://img.shields.io/bundlephobia/min/%40hyperse%2Ftailwind-layer?style=flat-quare&labelColor=000000" />
12
+ </a >
13
+ <a aria-label =" Top language " href =" https://github.com/hyperse-io/tailwind-layer/search?l=typescript " >
14
+ <img alt="GitHub top language" src="https://img.shields.io/github/languages/top/hyperse-io/tailwind-layer?style=flat-square&labelColor=000&color=blue">
15
+ </a >
16
+ <a aria-label =" Licence " href =" https://github.com/hyperse-io/tailwind-layer/blob/main/LICENSE " >
17
+ <img alt="Licence" src="https://img.shields.io/github/license/hyperse-io/tailwind-layer?style=flat-quare&labelColor=000000" />
18
+ </a >
19
+ </p >
20
+
3
21
Compile your tailwindcss components into tailwind plugins and enjoy full IntelliSense autocompletion!
4
22
5
23
## Usage
@@ -33,7 +51,7 @@ export default config;
33
51
@tailwind base;
34
52
@tailwind components;
35
53
@tailwind utilities;
36
- @import ' keen-slider/keen-slider.min.css' ;
54
+ @import " keen-slider/keen-slider.min.css" ;
37
55
38
56
* {
39
57
scroll-behavior : smooth ;
You can’t perform that action at this time.
0 commit comments