-
Notifications
You must be signed in to change notification settings - Fork 20
53 lines (45 loc) · 1.16 KB
/
frontend-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
name: Frontend Checks
on:
pull_request:
workflow_dispatch:
jobs:
lint:
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Prepare
uses: ./.github/actions/prepare
- name: Lint
run: npm run lint -- --max-warnings 0
check:
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Prepare
uses: ./.github/actions/prepare
- name: Lint
run: npm run check
test:
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Prepare
uses: ./.github/actions/prepare
- name: Test
run: npm run test
may-merge:
if: always()
needs: ['lint', 'check', 'test']
runs-on: ubuntu-24.04
steps:
- name: Cleared for merging
run: |
if [ "${{ needs.lint.result }}" == "success" ] && [ "${{ needs.check.result }}" == "success" ] && [ "${{ needs.test.result }}" == "success" ]; then
echo "This PR is cleared for merging"
else
echo "This PR is not cleared for merging"
exit 1
fi