Bump sinon from 18.0.0 to 19.0.2 #173
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Tests | |
on: | |
pull_request_target: | |
push: | |
branches: | |
- main | |
jobs: | |
unit_tests: | |
runs-on: ubuntu-latest | |
environment: staging | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
ref: ${{ github.event.pull_request.head.sha }} | |
- run: npm install | |
- run: npm run build | |
- run: npm test | |
- name: Upload coverage to CodeCov | |
uses: codecov/[email protected] | |
with: | |
directory: ./coverage | |
token: ${{ secrets.CODECOV_TOKEN }} | |
slug: slackapi/slack-health-score | |
health-score: | |
needs: unit_tests | |
permissions: | |
checks: write | |
runs-on: ubuntu-latest | |
environment: staging | |
steps: | |
- name: Setup repo | |
uses: actions/checkout@v4 | |
with: | |
ref: ${{ github.event.pull_request.head.sha }} | |
- run: npm install | |
- run: npm run build | |
- name: Yo dawg I heard you like healthscores so I healthscored your healthscore so you can healthscore while you healthscore | |
uses: ./ | |
with: | |
codecov_token: ${{ secrets.FILS_CODECOV_API_TOKEN }} | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
extension: js | |
include: src | |
codecov_max_attempts: 10 | |
codecov_retry_delay: 10000 | |
codecov_treat_timeout_as_error: true |