Skip to content

chore(deps): update dependency @taiga-ui/cspell-config to v0.8.0 #653

chore(deps): update dependency @taiga-ui/cspell-config to v0.8.0

chore(deps): update dependency @taiga-ui/cspell-config to v0.8.0 #653

Workflow file for this run

name: Lint
on: [pull_request]
jobs:
typecheck:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node.js and Cache
uses: taiga-family/ci/actions/setup-node@1.12.0
- name: Typecheck
run: npm run typecheck
cspell:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.0.0
- name: Setup Node.js and Cache
uses: taiga-family/ci/actions/setup-node@1.12.0
- name: Run cspell
run: npm run cspell -- --no-progress
prettier:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup global variables
uses: taiga-family/ci/actions/variables@1.12.0
- uses: actions/checkout@v4
if: env.SUPPORT_AUTO_PUSH == 'true'
with:
ref: ${{ github.head_ref }}
token: ${{ secrets.TAIGA_FAMILY_BOT_PAT }}
- name: Setup Node.js and Cache
uses: taiga-family/ci/actions/setup-node@1.12.0
- name: Run prettier
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/auto-push@1.12.0
stylelint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup global variables
uses: taiga-family/ci/actions/variables@1.12.0
- uses: actions/checkout@v4
if: env.SUPPORT_AUTO_PUSH == 'true'
with:
ref: ${{ github.head_ref }}
token: ${{ secrets.TAIGA_FAMILY_BOT_PAT }}
- name: Setup Node.js and Cache
uses: taiga-family/ci/actions/setup-node@1.12.0
- name: Run stylelint
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/auto-push@1.12.0
eslint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup global variables
uses: taiga-family/ci/actions/variables@1.12.0
- uses: actions/checkout@v4
if: env.SUPPORT_AUTO_PUSH == 'true'
with:
ref: ${{ github.head_ref }}
token: ${{ secrets.TAIGA_FAMILY_BOT_PAT }}
- name: Setup Node.js and Cache
uses: taiga-family/ci/actions/setup-node@1.12.0
- name: Run eslint
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/auto-push@1.12.0
concurrency:
group: lint-${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true