Create Config Loader Package #253
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: Test | |
on: | |
- pull_request | |
jobs: | |
Test: | |
name: Test All Apps, Packages, and Servers | |
runs-on: ubuntu-latest | |
env: | |
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }} | |
TURBO_TEAM: antribute | |
TURBO_REMOTE_ONLY: true | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Setup Bun | |
uses: oven-sh/setup-bun@v1 | |
- name: Install Dependencies | |
run: bun install | |
- name: Run Test | |
run: bun test | |
# Bun test currently doesn't output coverage files. Until this is implemented, uploads to | |
# Codecov will be disabled | |
# - name: Upload Tracking Coverage to Codecov | |
# uses: codecov/codecov-action@v3 | |
# with: | |
# files: ./packages/tracking/coverage/cobertura-coverage.xml | |
# flags: tracking | |
# fail_ci_if_error: true | |
# - name: Upload Antribute UI Coverage to Codecov | |
# uses: codecov/codecov-action@v3 | |
# with: | |
# files: ./packages/ui/coverage/cobertura-coverage.xml | |
# flags: ui | |
# fail_ci_if_error: true |