Skip to content

Commit e81785f

Browse files
committed
chore: updates
1 parent 261d659 commit e81785f

File tree

2 files changed

+83
-1
lines changed

2 files changed

+83
-1
lines changed

.github/workflows/ci-integrity.yml

Lines changed: 64 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
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

README.md

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,23 @@
11
# @hyperse/tailwind-layer
22

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+
321
Compile your tailwindcss components into tailwind plugins and enjoy full IntelliSense autocompletion!
422

523
## Usage
@@ -33,7 +51,7 @@ export default config;
3351
@tailwind base;
3452
@tailwind components;
3553
@tailwind utilities;
36-
@import 'keen-slider/keen-slider.min.css';
54+
@import "keen-slider/keen-slider.min.css";
3755

3856
* {
3957
scroll-behavior: smooth;

0 commit comments

Comments
 (0)