From c460d48354c91aabf12d90e0e3ecce52538c6ff6 Mon Sep 17 00:00:00 2001 From: Ely De La Cruz <603428+elycruz@users.noreply.github.com> Date: Wed, 19 Jul 2023 14:58:33 -0400 Subject: [PATCH] Updated repo URLs, in package.json to point to new URL. - Added 'coverage' task to 'build-and-test' workflow. - Added 'node v20' to task matrix, in 'build-and-test' workflow. --- .github/workflows/build-and-test.yml | 7 ++++++- package.json | 6 +++--- 2 files changed, 9 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build-and-test.yml b/.github/workflows/build-and-test.yml index 3c491f1..a5994dd 100644 --- a/.github/workflows/build-and-test.yml +++ b/.github/workflows/build-and-test.yml @@ -16,11 +16,12 @@ 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: @@ -29,3 +30,7 @@ jobs: - run: npm ci - run: npm run build - run: npm test + - run: npm coverage + + - name: Coveralls + uses: coverallsapp/github-action@v2 diff --git a/package.json b/package.json index 10c6b8f..81b422f 100644 --- a/package.json +++ b/package.json @@ -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", @@ -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" ],