diff --git a/.github/workflows/betapublish.yml b/.github/workflows/betapublish.yml index 41dd19c..966870e 100644 --- a/.github/workflows/betapublish.yml +++ b/.github/workflows/betapublish.yml @@ -1,33 +1,35 @@ name: Pre-Release on: - release: - types: [prereleased] + release: + types: [prereleased] jobs: - Publish: - runs-on: ubuntu-latest - permissions: - contents: read - packages: write - steps: - - uses: actions/checkout@v2 - - uses: actions/setup-node@v2 - with: - node-version: '12.x' - registry-url: 'https://registry.npmjs.org' - - name: Install - run: npm install - - name: Test - run: npm run test - - uses: codecov/codecov-action@v2 - with: - files: coverage/*.json - flags: unittests - name: react-carousel-codecov - fail_ci_if_error: true - verbose: true - - name: Build - run: npm run build - - name: Publish - run: npm publish --access=public --tag beta - env: - NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} + Publish: + runs-on: ubuntu-latest + permissions: + contents: read + packages: write + steps: + - uses: actions/checkout@v2 + - uses: actions/setup-node@v2 + with: + node-version: '12.x' + registry-url: 'https://registry.npmjs.org' + - name: Install + run: npm install + - name: Test + run: npm run test + - uses: codecov/codecov-action@v4 + env: + CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} + with: + files: coverage/*.json + flags: unittests + name: react-carousel-codecov + fail_ci_if_error: true + verbose: true + - name: Build + run: npm run build + - name: Publish + run: npm publish --access=public --tag beta + env: + NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} diff --git a/.github/workflows/prchecks.yml b/.github/workflows/prchecks.yml index 3af8c57..99bccd3 100644 --- a/.github/workflows/prchecks.yml +++ b/.github/workflows/prchecks.yml @@ -22,7 +22,9 @@ jobs: run: npx commitlint --from ${{ github.event.pull_request.base.sha }} --to ${{ github.event.pull_request.head.sha }} --verbose - name: Test run: npm run test - - uses: codecov/codecov-action@v2 + - uses: codecov/codecov-action@v4 + env: + CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} with: files: coverage/*.json flags: unittests diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index c0c35aa..8298d45 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -18,7 +18,9 @@ jobs: run: npm install - name: Test run: npm run test - - uses: codecov/codecov-action@v2 + - uses: codecov/codecov-action@v4 + env: + CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} with: files: coverage/*.json flags: unittests