chore(deps): update dependency @taiga-ui/eslint-plugin-experience to v0.7.2 #14147
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: ⚙️ Lint | |
on: | |
pull_request: | |
push: | |
branches: [main] | |
jobs: | |
typecheck: | |
if: ${{ !contains(github.head_ref, 'release/') }} | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
- uses: taiga-family/ci/actions/[email protected] | |
- run: npm run typecheck | |
cspell: | |
if: ${{ !contains(github.head_ref, 'release/') }} | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
- uses: taiga-family/ci/actions/[email protected] | |
- run: npm run cspell -- --no-progress | |
prettier: | |
if: ${{ !contains(github.head_ref, 'release/') }} | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
- uses: taiga-family/ci/actions/[email protected] | |
- uses: actions/[email protected] | |
if: env.SUPPORT_AUTO_PUSH == 'true' | |
with: | |
ref: ${{ github.head_ref }} | |
token: ${{ secrets.TAIGA_FAMILY_BOT_PAT }} | |
- uses: taiga-family/ci/actions/[email protected] | |
- run: npm run prettier ${{ env.SUPPORT_AUTO_PUSH == 'true' && '-- --write' || '-- --check' }} | |
- name: Apply changes after linting | |
if: env.SUPPORT_AUTO_PUSH == 'true' | |
uses: taiga-family/ci/actions/[email protected] | |
stylelint: | |
if: ${{ !contains(github.head_ref, 'release/') }} | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
- uses: taiga-family/ci/actions/[email protected] | |
- uses: actions/[email protected] | |
if: env.SUPPORT_AUTO_PUSH == 'true' | |
with: | |
ref: ${{ github.head_ref }} | |
token: ${{ secrets.TAIGA_FAMILY_BOT_PAT }} | |
- uses: taiga-family/ci/actions/[email protected] | |
- run: npm run stylelint ${{ env.SUPPORT_AUTO_PUSH == 'true' && '-- --fix' || '' }} | |
- name: Apply changes after linting | |
if: env.SUPPORT_AUTO_PUSH == 'true' | |
uses: taiga-family/ci/actions/[email protected] | |
eslint: | |
if: ${{ !contains(github.head_ref, 'release/') }} | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
- uses: taiga-family/ci/actions/[email protected] | |
- uses: actions/[email protected] | |
if: env.SUPPORT_AUTO_PUSH == 'true' | |
with: | |
ref: ${{ github.head_ref }} | |
token: ${{ secrets.TAIGA_FAMILY_BOT_PAT }} | |
- uses: taiga-family/ci/actions/[email protected] | |
- run: npm run lint ${{ env.SUPPORT_AUTO_PUSH == 'true' && '-- --fix' || '' }} | |
- name: Apply changes after linting | |
if: env.SUPPORT_AUTO_PUSH == 'true' | |
uses: taiga-family/ci/actions/[email protected] | |
concurrency: | |
group: lint-${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true |