ci(storybook-8): added chromatic.config.json for using from storybook #2723
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-Main | |
on: | |
push: | |
concurrency: | |
group: fusion_ci | |
jobs: | |
# --- Do Code Formatter and Linter check | |
code-quality: | |
name: 'Code Quality Check' | |
uses: ironSource/fusion-ui/.github/workflows/step_linter.yml@master | |
with: | |
branch_name: ${{ github.ref_name}} | |
secrets: | |
NPM_TOKEN: ${{secrets.NPM_TOKEN}} | |
# --- Do Unit-Test check | |
unit-tests: | |
name: 'UnitTests' | |
uses: ironSource/fusion-ui/.github/workflows/step_unit_tests.yml@master | |
with: | |
branch_name: ${{ github.ref_name }} | |
secrets: | |
NPM_TOKEN: ${{secrets.NPM_TOKEN}} | |
# --- Do Git Leaks check | |
gitleaks: | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Add Homebrew to $PATH | |
run: echo "/home/linuxbrew/.linuxbrew/bin:/home/linuxbrew/.linuxbrew/sbin" >> $GITHUB_PATH | |
- uses: actions/checkout@v3 | |
- name: Install GitLeaks | |
run: | | |
brew install gitleaks | |
- name: gitleaks-action | |
run: | | |
gitleaks --verbose detect --log-opts --since="2023-01-01" |