Skip to content

feat: add prop color in tag row to smart-table #1145 #3031

feat: add prop color in tag row to smart-table #1145

feat: add prop color in tag row to smart-table #1145 #3031

Workflow file for this run

name: Automated Tests and Linting
on:
pull_request:
branches: ['main']
jobs:
test-prettier-lint:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.22.1]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install packages
run: yarn install --frozen-lockfile
- name: Run Tests
run: yarn test:coverage
- uses: paambaati/codeclimate-action@v3.0.0
env:
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
with:
coverageCommand: yarn test:coverage
- name: Run Prettier
run: yarn prettier
- name: Run Lint
run: yarn lint
- name: Run Build
run: yarn build