Skip to content

ci: use custom actions #14546

ci: use custom actions

ci: use custom actions #14546

Workflow file for this run

name: ⚙️ Lint
on:
pull_request:
push:
branches: [main]
jobs:
lint:
name: Lint
if: ${{ !contains(github.head_ref, 'release/') }}
runs-on: ubuntu-latest
steps:
- run: |
echo "${{github.event.pull_request.head.ref}}"
echo "${{github.head_ref}}"
echo "${{ github.repository }}"
echo "${{ github.event.repository.name }}"
echo "${{ github.event.pull_request.head.repo.full_name || github.repository }}"
- uses: taiga-family/ci/actions/setup/[email protected]
- uses: taiga-family/ci/actions/setup/[email protected]
- uses: taiga-family/ci/actions/setup/[email protected]
- run: npm run typecheck
- run: npm run cspell -- --no-progress
- run: |
if [[ "${{ env.SUPPORT_AUTO_PUSH }}" == "true" ]]; then
npm run prettier -- --write
npm run stylelint -- --fix
npm run lint -- --fix
else
npm run prettier -- --check
npm run stylelint -- --fix
npm run lint -- --fix
fi
- name: Apply changes after linting
if: env.SUPPORT_AUTO_PUSH == 'true'
uses: taiga-family/ci/actions/auto/[email protected]
with:
token: ${{ secrets.TAIGA_FAMILY_BOT_PAT }}
concurrency:
group: lint-${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true