Skip to content

chore(deps): update taiga-family/ci action to v1.28.0 (#78) #207

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

chore(deps): update taiga-family/ci action to v1.28.0 (#78) #207

Workflow file for this run

name: ⚙️ Lint
on:
pull_request:
push:
branches: [main]
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
with:
fetch-depth: 0
- uses: taiga-family/ci/actions/setup/[email protected]
- name: prepare integration test
run: |
rm -rf taiga-ui && git clone https://github.com/taiga-family/taiga-ui.git --single-branch
cd taiga-ui && npm ci && cd ..
- run: |
npm run commitlint
npm run prettier -- --check
npm run stylelint
npm run lint
- name: cleanup
run: rm -rf taiga-ui
concurrency:
group: lint-${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true