Skip to content

fix(radio): background color when disabled and checked #484

fix(radio): background color when disabled and checked

fix(radio): background color when disabled and checked #484

Workflow file for this run

name: check-quality
on: [pull_request]
jobs:
pipeline-quality:
runs-on: ubuntu-latest
env:
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }}
TURBO_TEAM: ${{ secrets.TURBO_TEAM }}
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set Node version
uses: actions/setup-node@v3
with:
node-version-file: ".nvmrc"
cache: "yarn"
- name: Cache NPM dependencies
uses: actions/cache@v3
id: cache-dependencies
with:
path: |
**/node_modules
key: ${{ runner.os }}-node-${{ hashFiles('**/yarn.lock') }}
- name: Install dependencies
if: steps.cache-dependencies.outputs.cache-hit != 'true'
run: yarn
- name: Run build tokens
run: npm run build:tokens
- name: Run build icons
run: npm run build:icons
- name: Run lint
run: yarn lint
- name: Run tests
run: yarn test:ci
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v1
with:
token: ${{ secrets.CODECOV_AUTOMATION_FROM_JUNIOR_CONQUISTA }}