Skip to content

chore(deps): update taiga-family/ci action to v1.25.4 #771

chore(deps): update taiga-family/ci action to v1.25.4

chore(deps): update taiga-family/ci action to v1.25.4 #771

Workflow file for this run

name: Lint
on: [pull_request]
jobs:
typecheck:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.1.0
- uses: taiga-family/ci/actions/setup/node@v1.25.3
- run: npm run typecheck
cspell:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.1.0
- uses: taiga-family/ci/actions/setup/node@v1.25.3
- run: npm run cspell -- --no-progress
prettier:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.1.0
- uses: taiga-family/ci/actions/setup/variables@v1.25.3
- uses: actions/checkout@v4.1.0
if: env.SUPPORT_AUTO_PUSH == 'true'
with:
ref: ${{ github.head_ref }}
token: ${{ secrets.TAIGA_FAMILY_BOT_PAT }}
- uses: taiga-family/ci/actions/setup/node@v1.25.3
- run: npm run prettier ${{ env.SUPPORT_AUTO_PUSH == 'true' && '-- --write' || '-- --check' }}
- uses: taiga-family/ci/actions/auto/push@v1.25.3
if: env.SUPPORT_AUTO_PUSH == 'true'
stylelint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.1.0
- uses: taiga-family/ci/actions/setup/variables@v1.25.3
- uses: actions/checkout@v4.1.0
if: env.SUPPORT_AUTO_PUSH == 'true'
with:
ref: ${{ github.head_ref }}
token: ${{ secrets.TAIGA_FAMILY_BOT_PAT }}
- uses: taiga-family/ci/actions/setup/node@v1.25.3
- run: npm run stylelint ${{ env.SUPPORT_AUTO_PUSH == 'true' && '-- --fix' || '' }}
- uses: taiga-family/ci/actions/auto/push@v1.25.3
if: env.SUPPORT_AUTO_PUSH == 'true'
eslint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.1.0
- name: Setup global variables
uses: taiga-family/ci/actions/setup/variables@v1.25.3
- uses: actions/checkout@v4.1.0
if: env.SUPPORT_AUTO_PUSH == 'true'
with:
ref: ${{ github.head_ref }}
token: ${{ secrets.TAIGA_FAMILY_BOT_PAT }}
- uses: taiga-family/ci/actions/setup/node@v1.25.3
- run: npm run lint ${{ env.SUPPORT_AUTO_PUSH == 'true' && '-- --fix' || '' }}
- uses: taiga-family/ci/actions/auto/push@v1.25.3
if: env.SUPPORT_AUTO_PUSH == 'true'
concurrency:
group: lint-${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true