-
Notifications
You must be signed in to change notification settings - Fork 41
60 lines (58 loc) · 1.69 KB
/
welcome.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
name: Welcome to Maximum!
on:
pull_request:
branches:
- main
paths:
- "data/**.json"
- ".github/workflows/welcome.yml"
jobs:
schema-check:
name: Schema Check
runs-on: ubuntu-latest
if: github.repository == 'saitamau-maximum/members'
steps:
- name: Checkout
uses: actions/[email protected]
with:
fetch-depth: 0
- name: Setup pnpm
uses: pnpm/action-setup@v2
with:
version: "8.12.0"
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: "20.10"
cache: "pnpm"
cache-dependency-path: "./checker/pnpm-lock.yaml"
- name: Install deps
run: pnpm install
working-directory: ./checker
- name: Build
run: pnpm build
working-directory: ./checker
- name: Check if the file names are valid
run: |
files=$(git diff --name-only origin/main HEAD)
IFS=$'\n'
for file in $files; do
# Check if the file name does not contain spaces
if [[ "$file" =~ \ |\' ]]; then
echo "File name contains spaces: $file"
exit 1
fi
# Check if the file name does not contain non-ASCII characters
if [[ "$file" =~ [^[:ascii:]] ]]; then
echo "File name contains non-ASCII characters: $file"
exit 1
fi
done
- name: Check schema
run: |
modified=$(git diff --name-only origin/main HEAD | tr '\n' ' ')
if [ -z "$modified" ]; then
echo "No files modified"
exit 0
fi
node ./checker/dist/cli.js $modified