-
Notifications
You must be signed in to change notification settings - Fork 1
50 lines (45 loc) · 1.37 KB
/
ci.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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
name: ⚙️ CI
on:
pull_request:
push:
branches: [main]
jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
with:
persist-credentials: false
- uses: taiga-family/ci/actions/setup/[email protected]
- uses: taiga-family/ci/actions/setup/[email protected]
- run: npm run cspell -- --no-progress
- run: |
if [[ "${{ env.SUPPORT_AUTO_PUSH }}" == "true" ]]; then
npm run stylelint -- --fix
npm run prettier -- --write
npm run lint -- --fix
else
npm run stylelint
npm run prettier -- --check
npm run lint
fi
- uses: taiga-family/ci/actions/auto/[email protected]
with:
token: ${{ secrets.TAIGA_FAMILY_BOT_PAT }}
release-it-check:
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
with:
fetch-depth: 0
fetch-tags: true
- uses: taiga-family/ci/actions/setup/[email protected]
- run: |
# prevent fatal: ref HEAD is not a symbolic ref
git checkout -f main > /dev/null
# node_modules is correct
# because installed before checkout main
npx release-it --dry-run --ci --no-git.requireCommits
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true