From 4d183c1ca4e19d9a057b559435ffad207f37e3a1 Mon Sep 17 00:00:00 2001 From: Murhaf Sousli Date: Sat, 4 Jan 2025 09:39:56 +0100 Subject: [PATCH] Update --- .github/workflows/integrate.yml | 10 +++++----- .github/workflows/netlify.yml | 6 +++--- projects/ngx-progressbar/karma.conf.js | 2 +- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/integrate.yml b/.github/workflows/integrate.yml index 9cb16ff..6163068 100644 --- a/.github/workflows/integrate.yml +++ b/.github/workflows/integrate.yml @@ -10,10 +10,10 @@ jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@master - name: Use Node.js 20 - uses: actions/setup-node@v1 + uses: actions/setup-node@master with: node-version: 20 @@ -30,13 +30,13 @@ jobs: run: npm run test-lib-headless - name: Upload coverage reports to Codecov - uses: codecov/codecov-action@v4.0.1 + uses: codecov/codecov-action@main with: token: ${{ secrets.CODECOV_TOKEN }} slug: MurhafSousli/ngx-progressbar - name: Code Coverage Report - uses: irongut/CodeCoverageSummary@v1.3.0 + uses: irongut/CodeCoverageSummary@master with: filename: coverage/**/cobertura-coverage.xml badge: true @@ -49,7 +49,7 @@ jobs: thresholds: '60 80' - name: Add Coverage PR Comment - uses: marocchino/sticky-pull-request-comment@v2 + uses: marocchino/sticky-pull-request-comment@main if: github.event_name == 'pull_request' with: recreate: true diff --git a/.github/workflows/netlify.yml b/.github/workflows/netlify.yml index c51cc0a..0992dc6 100644 --- a/.github/workflows/netlify.yml +++ b/.github/workflows/netlify.yml @@ -8,9 +8,9 @@ jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@master - name: Use Node.js 20 - uses: actions/setup-node@v1 + uses: actions/setup-node@master with: node-version: 20 - name: Install dependencies @@ -18,7 +18,7 @@ jobs: - name: Build demo run: npm run build - name: Deploy to Netlify - uses: nwtgck/actions-netlify@v3.0.0 + uses: nwtgck/actions-netlify@v3 with: publish-dir: './dist/ngx-progressbar-demo/browser' production-branch: deploy-netlify diff --git a/projects/ngx-progressbar/karma.conf.js b/projects/ngx-progressbar/karma.conf.js index b54fbf6..067a16f 100644 --- a/projects/ngx-progressbar/karma.conf.js +++ b/projects/ngx-progressbar/karma.conf.js @@ -25,7 +25,7 @@ module.exports = function (config) { suppressAll: true // removes the duplicated traces }, coverageReporter: { - dir: require('path').join(__dirname, '../../coverage/ngx-scrollbar'), + dir: require('path').join(__dirname, '../../coverage/ngx-progressbar'), subdir: '.', reporters: [ { type: 'html' },