1 |
# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node |
2 |
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions |
3 |
|
4 |
name: Build |
5 |
|
6 |
on: [ push, pull_request ] |
7 |
|
8 |
jobs: |
9 |
build: |
10 |
strategy: |
11 |
matrix: |
12 |
node-version: [18.x, 20.x] |
13 |
os: [ubuntu-latest, macos-latest] |
14 |
|
15 |
runs-on: ${{ matrix.os }} |
16 |
|
17 |
steps: |
18 |
- uses: actions/checkout@v3 |
19 |
|
20 |
- name: Use Node.js ${{ matrix.node-version }} |
21 |
uses: actions/setup-node@v3 |
22 |
with: |
23 |
node-version: ${{ matrix.node-version }} |
24 |
|
25 |
- name: Install Libraries (Linux) |
26 |
run: sudo apt install build-essential libcurl4 libcurl4-gnutls-dev -y |
27 |
if: matrix.os == 'ubuntu-latest' |
28 |
|
29 |
- name: Install Libraries and Tools (macOS) |
30 |
run: brew install curl |
31 |
if: matrix.os == 'macos-latest' |
32 |
|
33 |
- name: "Install Native Libraries" |
34 |
run: | |
35 |
git clone https://github.com/Cogmasters/concord; |
36 |
cd concord; |
37 |
make; |
38 |
sudo make install; |
39 |
cd ..; |
40 |
|
41 |
- name: "Install Dependencies" |
42 |
run: npm install |
43 |
|
44 |
- name: "Install Dev Dependencies" |
45 |
run: npm install -D |
46 |
|
47 |
- name: "Generate prisma client" |
48 |
run: npx prisma generate |
49 |
|
50 |
- name: "ESLint" |
51 |
run: npm run lint || echo "ESLint Failed" |
52 |
|
53 |
- name: "Build (TypeScript)" |
54 |
run: npm run build --if-present |
55 |
|
56 |
- name: "Build (Native)" |
57 |
run: make |