Skip to content

Commit

Permalink
Merge pull request #122 from Trendyol/feature/disabled-arrows
Browse files Browse the repository at this point in the history
feat: upgrade codecov workflow version
  • Loading branch information
Aegean09 authored Dec 4, 2024
2 parents 8607167 + e83e83c commit 9b3ef15
Show file tree
Hide file tree
Showing 3 changed files with 38 additions and 32 deletions.
62 changes: 32 additions & 30 deletions .github/workflows/betapublish.yml
Original file line number Diff line number Diff line change
@@ -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 }}
4 changes: 3 additions & 1 deletion .github/workflows/prchecks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 9b3ef15

Please sign in to comment.