feat(table): updated row selected state color #701
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: "CI" | |
on: | |
pull_request: | |
types: [ opened, synchronize, reopened, ready_for_review ] | |
concurrency: | |
group: ${{ github.head_ref }}-validate-pr | |
cancel-in-progress: true | |
jobs: | |
lint: | |
if: github.event.pull_request.draft == false | |
timeout-minutes: 30 | |
runs-on: ubuntu-latest | |
steps: | |
- name: "Checkout repository" | |
uses: actions/checkout@v3 | |
- name: "Setup" | |
uses: ./.github/actions/setup | |
- name: "Run packages lint" | |
run: yarn lint:code | |
test: | |
if: github.event.pull_request.draft == false | |
timeout-minutes: 30 | |
runs-on: ubuntu-latest | |
steps: | |
- name: "Checkout repository" | |
uses: actions/checkout@v3 | |
- name: "Setup" | |
uses: ./.github/actions/setup | |
- name: "Run unit tests" | |
run: | | |
sudo timedatectl set-timezone Europe/Paris | |
yarn test | |
Github-actions-validator: | |
if: github.event.pull_request.draft == false | |
runs-on: ubuntu-latest | |
steps: | |
- name: "Checkout repository" | |
uses: actions/checkout@v3 | |
- name: "Github actions validator" | |
uses: lumapps/github-actions-validator@v2 | |
Commit-message-validation: | |
if: github.event.pull_request.draft == false | |
runs-on: ubuntu-latest | |
steps: | |
- name: "Checkout repository" | |
uses: actions/checkout@v3 | |
- name: "Commit message validation" | |
uses: lumapps/commit-message-validator@master | |
with: | |
no_jira: true | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |