chore: pass headers to request #202
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: Build and Test | |
on: | |
pull_request: | |
branches: | |
- next | |
jobs: | |
test_and_build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
ref: ${{ github.event.pull_request.head.sha }} | |
- name: Enable Corepack | |
run: corepack enable | |
- name: Install Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '21' | |
cache: 'yarn' | |
- name: Install dependencies | |
run: | | |
yarn cache clean && yarn install --immutable | |
- name: Check linting | |
run: yarn lint | |
- name: Build | |
run: yarn build | |
- name: Run tests | |
run: | | |
yarn test:coverage | |
- name: Jest Coverage Comment | |
uses: MishaKav/jest-coverage-comment@main | |
with: | |
title: Code Coverage Report | |
multiple-files: | | |
All packages, ./coverage/coverage-summary.json | |
Components, ./packages/components/coverage/coverage-summary.json | |
Mock app, ./packages/mock-app/coverage/coverage-summary.json | |
Services, ./packages/services/coverage/coverage-summary.json | |
UNTP test suite, ./packages/untp-test-suite/coverage/coverage-summary.json | |
VC test suite, ./packages/vc-test-suite/coverage/coverage-summary.json |