Skip to content

Commit

Permalink
Merge pull request #116 from elycruz/dev
Browse files Browse the repository at this point in the history
General CI/CD Maintenance, and Dev Dependency Updates
  • Loading branch information
elycruz authored Jul 19, 2023
2 parents 5bd47b1 + 54a7af8 commit 011eb65
Show file tree
Hide file tree
Showing 3 changed files with 107 additions and 53 deletions.
13 changes: 10 additions & 3 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,16 +16,23 @@ 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 output-coverage-lcov

- name: Coveralls
uses: coverallsapp/github-action@v2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
file: "coverage/tests.lcov"
138 changes: 92 additions & 46 deletions package-lock.json

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

9 changes: 5 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "rollup-plugin-sass",
"version": "1.12.19",
"version": "1.12.20",
"description": "Rollup Sass files.",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
Expand All @@ -18,6 +18,7 @@
"downlevel-dts": "downlevel-dts . ts3.5 [--to=3.5]",
"test": "nyc --reporter=html --reporter=text ava ./test/*.test.ts -s && npm run test:rollup.config.spec.ts",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"output-coverage-lcov": "nyc report --reporter=text-lcov > coverage/tests.lcov",
"test:rollup.config.spec.ts": "tsc --project tsconfig.spec.json --noEmit"
},
"standard": {
Expand All @@ -28,7 +29,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 +42,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 011eb65

Please sign in to comment.