-
Notifications
You must be signed in to change notification settings - Fork 1
33 lines (30 loc) · 917 Bytes
/
build.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
name: ⚙️ CI
on:
pull_request:
push:
branches: [main]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- 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: npx ng build
- run: |
if [[ "${{ env.SUPPORT_AUTO_PUSH }}" == "true" ]]; then
npx stylelint '**/*.{less,css}' --fix
npx prettier '**/*.*' --write
npx eslint . --fix
else
npx stylelint '**/*.{less,css}'
npx prettier '**/*.*' --check
npx eslint .
fi
- uses: taiga-family/ci/actions/auto/[email protected]
with:
token: ${{ secrets.TAIGA_FAMILY_BOT_PAT }}
concurrency:
group: build-${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true