feat: adding shopify source to tiktok ads #3757
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: Report Code Coverage | |
on: | |
workflow_call: | |
secrets: | |
CODECOV_TOKEN: | |
required: true | |
pull_request: | |
types: ['opened', 'reopened', 'synchronize'] | |
jobs: | |
coverage: | |
name: Code Coverage | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/[email protected] | |
with: | |
ref: ${{ github.event.pull_request.head.sha }} | |
fetch-depth: 1 | |
- name: Setup Node | |
uses: actions/[email protected] | |
with: | |
node-version-file: '.nvmrc' | |
cache: 'npm' | |
- name: Install Dependencies | |
run: npm run setup | |
- name: Run Tests | |
run: npm run test:ci | |
- name: Upload Coverage Reports to Codecov | |
uses: codecov/[email protected] | |
with: | |
directory: ./reports/coverage | |
token: ${{ secrets.CODECOV_TOKEN }} |