-
Notifications
You must be signed in to change notification settings - Fork 2
180 lines (158 loc) · 5.03 KB
/
nodejs.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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: ci
on: [push, pull_request]
jobs:
build:
runs-on: ${{ matrix.os }}
container: node:current
timeout-minutes: 60
if: "!contains(github.event.head_commit.message, '[skip ci]')"
strategy:
matrix:
node: ['lts/*', 'current']
os: [ubuntu-latest]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- name: Cache
uses: actions/cache@v3
id: cache-lerna
env:
cache-name: cache-lerna
with:
path: |
node_modules
# node_modules/.cache/nx
package-lock.json
# packages/*/.eslintcache
packages/*/.tsbuildinfo
packages/*/.vscode
packages/*/dist
packages/*/node_modules
packages/*/package-lock.json
key: ${{ runner.OS }}-build-${{ env.cache-name }}-${{ github.ref }}-${{ matrix.node }}-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.OS }}-build-${{ env.cache-name }}-${{ github.ref }}-${{ matrix.node }}-
- name: Prepare
run: |
pwd
uname -a
export DEBIAN_FRONTEND=noninteractive
apt-get update -qq --yes > /dev/null
# apt-get upgrade -qq --yes > /dev/null
apt-get install -qq --yes --no-install-recommends bash dnsutils git jq locales net-tools wget > /dev/null
apt-get install -qq --yes postgresql-client libpq-dev > /dev/null
uname -a
npm -v && node -v
git --version
openssl version
cat /etc/*release
sed -i 's/^# *\(en_US.UTF-8\)/\1/' /etc/locale.gen
locale-gen
locale -a
netstat -tunpl
chmod a+w -R .
dig jaeger
export cwd=`pwd`
git config --global --add safe.directory $cwd
- name: Verify
run: |
uname -a
export DEBIAN_FRONTEND=noninteractive
apt-get -qq -y update > /dev/null
apt-get -qq -y install dnsutils jq net-tools > /dev/null
netstat -tunpl
dig httpbin
curl http://httpbin/get
env:
CI: true
- name: Inatall Dependencies
timeout-minutes: 15
run: |
chown -R 1001:121 "/github/home/.npm"
# chmod a+w -R .
# DO NOT execute: npm config set unsafe-perm=true
export cwd=`pwd`
# .github/workflows/fix.sh
npm i --no-audit -g autocannon c8 lerna rollup tsx zx
npm i
env:
CI: true
- name: Build
run: |
pwd
# chmod a+w -R .
whoami
export cwd=`pwd`
. .scripts/ci/ci-env.sh
.scripts/ci/ci-prepare.sh
# .github/workflows/fix.sh
npm run build --if-present
env:
CI: true
- name: Lint
run: |
export cwd=`pwd`
. .scripts/ci/ci-env.sh
.scripts/ci/ci-prepare.sh
npm run lint:s
npm run lint:cycle
env:
CI: true
# - name: Init Database
# run: |
# export cwd=`pwd`
# . .scripts/ci/ci-env.sh
# .scripts/ci/ci-prepare.sh
# .scripts/ci/ci-init-db.sh
# env:
# CI: true
# POSTGRES_HOST: postgres
# POSTGRES_PORT: ${{ job.services.postgres.ports[5432] }}
# POSTGRES_DB: db_ci_test
# POSTGRES_USER: postgres
# POSTGRES_PASSWORD: postgres
# PGPASSWORD: postgres
- name: Testing
run: |
export cwd=`pwd`
. .scripts/ci/ci-env.sh
.scripts/ci/ci-prepare.sh
npm run ci
env:
CI: true
HTTPBIN_HOST: httpbin
ALI_ALB_IPS: ${{ secrets.ALI_ALB_IPS }}
ALI_ALB_GROUPID: ${{ secrets.ALI_ALB_GROUPID }}
ALI_ECS_AID: ${{ secrets.ALI_ECS_AID }}
ALI_ECS_ASECRET: ${{ secrets.ALI_ECS_ASECRET }}
ALI_ECS_IDS: ${{ secrets.ALI_ECS_IDS }}
ALI_ECS_IPS: ${{ secrets.ALI_ECS_IPS }}
ALI_OSS_AID: ${{ secrets.ALI_OSS_AID }}
ALI_OSS_ASECRET: ${{ secrets.ALI_OSS_ASECRET }}
ALI_OSS_ENDPOINT: ${{ secrets.ALI_OSS_ENDPOINT }}
ALI_OSS_BUCKET: ${{ secrets.ALI_OSS_BUCKET }}
OTEL_EXPORTER_OTLP_ENDPOINT: http://jaeger:4317
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
services:
httpbin:
image: kennethreitz/httpbin
ports:
- 80:80 # no 443
jaeger:
image: jaegertracing/all-in-one
env:
TZ: 'Asia/Chongqing'
COLLECTOR_OTLP_ENABLED: 'true'
ports:
- 4317:4317
- 4318:4318
- 5778:5778
- 6831:6831/udp
- 6832:6832/udp
- 14250:14250
- 16686:16686