-
Notifications
You must be signed in to change notification settings - Fork 58
54 lines (45 loc) · 1.13 KB
/
check.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
name: Check Lint and Format
on:
pull_request:
branches:
- main
push:
branches:
- main
workflow_dispatch:
jobs:
lint-and-format:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Node.js for server
uses: actions/setup-node@v4
with:
node-version: 16.x
- name: Check server
run: |
npm install
npm run lint
npm run format -- --check
- name: Set up Node.js for client
uses: actions/setup-node@v4
with:
node-version: latest
- name: Check client
run: |
cd client
npm install
npm run lint
npm run format -- --check
- name: Check if the code is formatted and linted
run: |
git diff --exit-code -- . ':(exclude)package-lock.json' ':(exclude)client/package-lock.json'
if [ $? -eq 0 ]; then
echo "Code is formatted and linted"
else
echo "Code is not formatted or linted"
exit 1
fi