-
Notifications
You must be signed in to change notification settings - Fork 5
98 lines (84 loc) · 2.7 KB
/
node.js.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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
# https://docs.github.com/en/actions/guides/building-and-testing-nodejs
name: Node.js CI
on:
push:
branches: [main]
pull_request:
branches: [main]
schedule:
- cron: '00 03 * * *'
- cron: '00 11 * * *'
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
# Each version of Node.js specified in the node-version array creates a job that runs the same steps.
node-version: [20.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: node --version && npm --version
- run: npm install -g npm@^10.2.5
- run: npm --version
- run: npm ci
- run: npm run build
- run: npm test
- run: npm run prettier-check
clean-build:
runs-on: ubuntu-latest
strategy:
matrix:
# Each version of Node.js specified in the node-version array creates a job that runs the same steps.
node-version: [20.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: node --version && npm --version
- run: npm install -g npm@^10.2.5
- run: npm --version
- run: ls
- run: rm -v package-lock.json
- run: ls
- run: npm install
- run: npm run build
check-package-lock:
runs-on: ubuntu-latest
strategy:
matrix:
# Each version of Node.js specified in the node-version array creates a job that runs the same steps.
node-version: [20.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: node --version && npm --version
- run: npm install -g npm@^10.2.5
- run: npm --version
- run: npm install
- name: Fail if npm install changed package-lock.json
run: git diff --exit-code package-lock.json
check-file-extensions:
runs-on: ubuntu-latest
strategy:
matrix:
# Each version of Node.js specified in the node-version array creates a job that runs the same steps.
node-version: [20.x]
steps:
- uses: actions/checkout@v4
- name: Fail if .tsx files are contained in wrong directories
run: |
lines=$(find src/common src/hooks src/services src/utils -type f -name '*.tsx')
if echo "$lines" | grep -q '.tsx'; then
echo ".tsx files are not allowed here:"
echo "$lines"
exit 1
fi