get some awareness #17
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: | |
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 ci | |
- run: npm run build | |
- run: npm test | |
- run: npm run test:gen-cov | |
- name: Upload coverage to CodeCov | |
uses: codecov/[email protected] | |
with: | |
directory: ./coverage | |
token: ${{ secrets.CODECOV_TOKEN }} | |
slug: slackapi/slack-health-score | |
- name: Yo dawg I heard you like healthscores so I healthscored your healthscore so you can healthscore while you healthscore | |
uses: ./ | |
with: | |
extension: js | |
ignore: node_modules |