Skip to content

Commit

Permalink
Updated repo URLs, in package.json to point to new URL.
Browse files Browse the repository at this point in the history
- Added 'coverage' task to 'build-and-test' workflow.
- Added 'node v20' to task matrix, in 'build-and-test' workflow.
  • Loading branch information
elycruz committed Jul 19, 2023
1 parent 18c25bb commit 87577a9
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 6 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,16 +16,19 @@ jobs:

strategy:
matrix:
node-version: [14.x, 16.x, 18.x]
node-version: [14.x, 16.x, 18.x, 20.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/

steps:
- uses: actions/checkout@v2

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: npm ci
- run: npm run build
- run: npm test
- run: npm run coverage

- name: Coveralls
uses: coverallsapp/github-action@v2
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
},
"repository": {
"type": "git",
"url": "git+https://github.com/differui/rollup-plugin-sass.git"
"url": "git+https://github.com/elycruz/rollup-plugin-sass.git"
},
"keywords": [
"rollup",
Expand All @@ -41,9 +41,9 @@
],
"license": "MIT",
"bugs": {
"url": "https://github.com/differui/rollup-plugin-sass/issues"
"url": "https://github.com/elycruz/rollup-plugin-sass/issues"
},
"homepage": "https://github.com/differui/rollup-plugin-sass#readme",
"homepage": "https://github.com/elycruz/rollup-plugin-sass#readme",
"files": [
"dist"
],
Expand Down

0 comments on commit 87577a9

Please sign in to comment.