generated from tatsutakein/project-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
64 lines (52 loc) · 1.51 KB
/
checks.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
name: 'Checks'
on:
pull_request:
branches:
- main
concurrency:
group: checks-${{ github.ref }}
cancel-in-progress: true
jobs:
changed:
uses: ./.github/workflows/wc-changed.yml
check-actions:
runs-on: ubuntu-24.04
needs: changed
if: needs.changed.outputs.actions == 'true'
timeout-minutes: 10
steps:
# https://github.com/marketplace/actions/checkout
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
# https://github.com/marketplace/actions/actionlint-with-reviewdog
- uses: reviewdog/action-actionlint@7eeec1dd160c2301eb28e1568721837d084558ad # v1.57.0
with:
fail_on_error: true
filter_mode: nofilter
level: error
reporter: github-pr-review
check-docs:
runs-on: ubuntu-24.04
needs: changed
if: needs.changed.outputs.docs == 'true'
timeout-minutes: 10
steps:
# https://github.com/marketplace/actions/checkout
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
# https://github.com/marketplace/actions/mise-action
- name: mise action
uses: jdx/mise-action@c1606014a9b1b7cd3e7c7f5fc607a25351fdffec # v2.1.1
- name: Install deps
run: bun install
- name: Build
run: bun run build
status-check:
runs-on: ubuntu-24.04
needs:
- check-actions
- check-docs
permissions: { }
if: failure()
steps:
- run: exit 1