feat: Define common styles as variable files and convert common page styles #5808
This file contains hidden or 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: Unit Test | |
on: | |
pull_request: | |
types: [assigned, opened, synchronize, reopened] | |
jobs: | |
unit-test: | |
permissions: write-all | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Setup GitHub Action | |
uses: actions/setup-node@v1 | |
with: | |
node-version: 22.0.0 | |
- name: Install dependencies | |
run: npm install | |
- name: Test | |
run: npm run unit_test:ci | |
env: | |
GH_UNIT_TEST_ENV: true | |
BRAND_NAME: "Fyle" | |
WEBPAGE_TITLE: "Fyle Integrations Settings" | |
BRAND_ID: "fyle" | |
SUPPORT_EMAIL: "staging-1-in" | |
HELP_ARTICLE_DOMAIN: "[email protected]" | |
ENV_ID: "https://help.manageexpenses.capitalone-fylehq.com" | |
FYLE_CLIENT_ID: "lolo" | |
CALLBACK_URI: "http://lolo.fyle.tech/callback" | |
CLUSTER_DOMAIN_API_URL: "http://lolo.fyle.tech" | |
FYLE_APP_URL: "http://lolo.fyle.tech" | |
SI_API_URL: "http://lolo.fyle.tech" | |
SAGE300_API_URL: "http://lolo.fyle.tech" | |
QBD_DIRECT_API_URL": "http://lolo.fyle.tech" | |
- name: Unit Test Coverage | |
uses: fylein/comment-test-coverage@master | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
path: coverage/coverage-summary.json | |
title: Unit Test Coverage | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@v3 |