Skip to content

Commit

Permalink
CI
Browse files Browse the repository at this point in the history
  • Loading branch information
rnyell committed Nov 11, 2024
1 parent 9ec719f commit fa8070d
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ on:
- master

# concurrency:
# group: ${{ github.workflow }}-${{ github.ref }}
# cancel-in-progress: true
# group: ${{ github.workflow }}-${{ github.ref }}
# cancel-in-progress: true

jobs:
ci:
Expand Down
15 changes: 9 additions & 6 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@ npm install postcss-contains --save-dev

```js
// postcss.config.js
import postcssContains from "postcss-contains"
import postcssContains from "postcss-contains";

export default {
plugins: [postcssContains]
}
plugins: [postcssContains],
};
```

```css
Expand Down Expand Up @@ -236,13 +236,16 @@ div {

```css
/* a */
@contains (color) {}
@contains (color) {
}

/* b */
@contains (color: red) {}
@contains (color: red) {
}

/* c */
@contains (color: red) {}
@contains (color: red) {
}
```

More examples are provided [here](./test/exmaples.md).

0 comments on commit fa8070d

Please sign in to comment.