Skip to content

Commit 6c76cdb

Browse files
committed
add CI
1 parent 3ff0ec8 commit 6c76cdb

File tree

4 files changed

+32
-6
lines changed

4 files changed

+32
-6
lines changed

.github/workflows/test.yml

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: Test
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
pull_request:
8+
9+
jobs:
10+
test:
11+
name: test
12+
runs-on: ubuntu-latest
13+
14+
strategy:
15+
matrix:
16+
node-version: [18, '*']
17+
18+
steps:
19+
- name: checkout
20+
uses: actions/checkout@v2
21+
- name: setup node
22+
uses: actions/setup-node@v2
23+
with:
24+
node-version: ${{ matrix.node-version }}
25+
- run: npm install
26+
- run: npm test

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -203,4 +203,4 @@ be used.
203203
[Gulp PostCSS]: https://github.com/postcss/gulp-postcss
204204
[Grunt PostCSS]: https://github.com/nDmitry/grunt-postcss
205205
[PostCSS]: https://github.com/postcss/postcss
206-
[PostCSS color-mod() Function]: https://github.com/jonathantneal/postcss-color-mod-function
206+
[PostCSS color-mod() Function]: https://github.com/csstools/postcss-color-mod-function

package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
{
22
"name": "postcss-color-mod-function",
3-
"version": "4.1.0",
3+
"version": "4.1.1",
44
"description": "Modify colors using the color-mod() function in CSS",
55
"author": "Jonathan Neal <jonathantneal@hotmail.com>",
66
"license": "CC0-1.0",
77
"repository": "jonathantneal/postcss-color-mod-function",
8-
"homepage": "https://github.com/jonathantneal/postcss-color-mod-function#readme",
9-
"bugs": "https://github.com/jonathantneal/postcss-color-mod-function/issues",
8+
"homepage": "https://github.com/csstools/postcss-color-mod-function#readme",
9+
"bugs": "https://github.com/csstools/postcss-color-mod-function/issues",
1010
"main": "index.cjs.js",
1111
"module": "index.es.mjs",
1212
"files": [

0 commit comments

Comments
 (0)