chore(deps): update taiga-ui to v3.41.0 #602
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] | |
jobs: | |
typecheck: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup Node.js and Cache | |
uses: taiga-family/ci/actions/[email protected] | |
- name: Typecheck | |
run: npm run typecheck | |
prettier: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup global variables | |
uses: taiga-family/ci/actions/[email protected] | |
- uses: actions/checkout@v3 | |
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/[email protected] | |
- 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/[email protected] | |
stylelint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup global variables | |
uses: taiga-family/ci/actions/[email protected] | |
- uses: actions/checkout@v3 | |
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/[email protected] | |
- 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/[email protected] | |
eslint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup global variables | |
uses: taiga-family/ci/actions/[email protected] | |
- uses: actions/checkout@v3 | |
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/[email protected] | |
- 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/[email protected] | |
concurrency: | |
group: lint-${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true |