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: [20.x, 21.x, 22.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 update && sudo apt install build-essential librsvg2-dev libgif-dev giflib-tools libcurl4 libcurl4-gnutls-dev libgtk-3-dev libpango1.0-dev libpng-dev libpng++-dev libpng-tools libjpeg-tools libjpeg-progs libjpeg-dev -y |
27 |
if: matrix.os == 'ubuntu-latest' |
28 |
|
29 |
- name: Install Libraries and Tools (macOS) |
30 |
run: brew install curl pkg-config cairo pango libpng jpeg giflib librsvg |
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 -- --max-warnings=0 |
52 |
|
53 |
- name: "Build (TypeScript)" |
54 |
run: npm run build --if-present |
55 |
|
56 |
- name: "Build (Native)" |
57 |
run: make |
58 |
|
59 |
- name: "Test" |
60 |
run: npx vitest run --coverage |
61 |
|
62 |
- name: Upload coverage reports to Codecov |
63 |
uses: codecov/[email protected] |
64 |
with: |
65 |
token: ${{ secrets.CODECOV_TOKEN }} |
66 |
slug: onesoft-sudo/sudobot |
67 |
|
68 |
blazebuild: |
69 |
strategy: |
70 |
matrix: |
71 |
os: [ubuntu-latest, macos-latest] |
72 |
|
73 |
runs-on: ${{ matrix.os }} |
74 |
|
75 |
steps: |
76 |
- uses: actions/checkout@v3 |
77 |
|
78 |
- name: Install tools on macOS |
79 |
run: brew install curl pkg-config cairo pango libpng jpeg giflib librsvg |
80 |
if: matrix.os == 'macos-latest' |
81 |
|
82 |
- name: Build with BlazeBuild |
83 |
run: ./blazew build |