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" ],