Skip to content

Commit

Permalink
add CI
Browse files Browse the repository at this point in the history
  • Loading branch information
romainmenke committed Oct 19, 2024
1 parent 3ff0ec8 commit 6c76cdb
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 6 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Test

on:
push:
branches:
- main
pull_request:

jobs:
test:
name: test
runs-on: ubuntu-latest

strategy:
matrix:
node-version: [18, '*']

steps:
- name: checkout
uses: actions/checkout@v2
- name: setup node
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm test
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -203,4 +203,4 @@ be used.
[Gulp PostCSS]: https://github.com/postcss/gulp-postcss
[Grunt PostCSS]: https://github.com/nDmitry/grunt-postcss
[PostCSS]: https://github.com/postcss/postcss
[PostCSS color-mod() Function]: https://github.com/jonathantneal/postcss-color-mod-function
[PostCSS color-mod() Function]: https://github.com/csstools/postcss-color-mod-function
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"name": "postcss-color-mod-function",
"version": "4.1.0",
"version": "4.1.1",
"description": "Modify colors using the color-mod() function in CSS",
"author": "Jonathan Neal <[email protected]>",
"license": "CC0-1.0",
"repository": "jonathantneal/postcss-color-mod-function",
"homepage": "https://github.com/jonathantneal/postcss-color-mod-function#readme",
"bugs": "https://github.com/jonathantneal/postcss-color-mod-function/issues",
"homepage": "https://github.com/csstools/postcss-color-mod-function#readme",
"bugs": "https://github.com/csstools/postcss-color-mod-function/issues",
"main": "index.cjs.js",
"module": "index.es.mjs",
"files": [
Expand Down

0 comments on commit 6c76cdb

Please sign in to comment.