-
Notifications
You must be signed in to change notification settings - Fork 35
49 lines (47 loc) · 1.49 KB
/
ci-client.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
name: "CI-Client"
on: [push, pull_request]
jobs:
client:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x]
env:
INSTALL_NODE_MODULES: true
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Set up NodeJS ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Cache NPM
uses: actions/cache@v2
with:
# npm cache files are stored in `~/.npm on Linux/MacOS
path: ~/.npm
key: ${{ runner.OS }}-node-${{ hashFiles('package.json') }}
restore-keys: |
${{ runner.OS }}-node-
${{ runner.OS }}-
- name: Cache pip
uses: actions/cache@v2
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('server/requirements.txt') }}
restore-keys: |
${{ runner.os }}-pip
${{ runner.os }}-
- name: Setup Environment
run: ./scripts/ci-install.sh
- name: Start Services
run: ./scripts/ci-start-services.sh
# avoid file watch limit error
- run: echo fs.inotify.max_user_watches=524288 | sudo tee -a /etc/sysctl.conf && sudo sysctl -p
- run: npm list || true
- name: test
run: npm run test