-
Notifications
You must be signed in to change notification settings - Fork 2
38 lines (28 loc) · 819 Bytes
/
ci.yml
File metadata and controls
38 lines (28 loc) · 819 Bytes
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: tob CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
go-version: ['1.16.x', '1.17.x', '1.18.x', '1.19.x', '1.20.x']
steps:
- uses: actions/checkout@v4
- name: Use Go ${{ matrix.go-version }}
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}
- name: Use Node 16
uses: actions/setup-node@v4
with:
node-version: 16
- name: Install Ubuntu dependecies
run: bash ./scripts/install_ubuntu_deps
- name: Install dashboard dependencies
run: CI='' npm --prefix dashboard/ui/ install
- name: Run packaging
run: CI='' bash ./scripts/package.sh 0.0.0.dummy