-
Notifications
You must be signed in to change notification settings - Fork 54
38 lines (38 loc) · 1.03 KB
/
main.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
name: etl-rest-server CI
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x, 10.x]
steps:
- uses: actions/checkout@v1
- name: Cache node modules
uses: actions/cache@v1
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Node ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: copy config.json file
uses: canastro/copy-file-action@master
with:
source: 'conf/config.example.json'
target: 'conf/config.json'
- name: Install all dependencies
run: npm i
- name: Install node-gyp
run: npm install -g node-gyp
- name: Prettier check
run: npm run prettier:check
- name: Start server
run: npm start