-
Notifications
You must be signed in to change notification settings - Fork 3
48 lines (38 loc) · 1.31 KB
/
pr.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
name: PR Checks
on: [pull_request]
# This allows a subsequently queued workflow run to interrupt previous runs
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Checkout source code
uses: actions/checkout@v4
- name: Install Dependencies
uses: ./.github/actions/install-deps
- name: Run Lint
run: npm run lint
require-build:
name: Require Build in PR
runs-on: ubuntu-latest
steps:
- name: Checkout source code
uses: actions/checkout@v4
- name: Install Dependencies
uses: ./.github/actions/install-deps
- name: Run Build
run: npm run build
- name: Require Build in PR
run: |
STATUS=$(git status --porcelain)
# Check if the status is not empty
if [ ! -z "$STATUS" ]; then
echo "Please build and commit your changes locally before submitting a PR."
echo "------"
echo "Uncommitted changes:"
echo "$STATUS"
exit 1
fi