-
Notifications
You must be signed in to change notification settings - Fork 4
123 lines (99 loc) · 2.87 KB
/
audit.yml
File metadata and controls
123 lines (99 loc) · 2.87 KB
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
name: Audit
on:
# push:
# branches: [main]
pull_request:
branches: [main]
jobs:
audit:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
submodules: recursive
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.24
# Set up Node.js environment
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: 18
# Install pnpm
- name: Install pnpm
run: npm install -g pnpm@latest
# Install dependencies and build the React app
- name: Build React App
working-directory: pkg/ui/web
run: |
pnpm install
pnpm run build
# Optional: Display the build output
- name: Display build output
run: tree --si dist
working-directory: pkg/ui/web
- name: Tidy Go modules
run: go mod tidy
- name: Verify dependencies
run: go mod verify
- name: Run go vet
run: go vet ./...
- name: Install staticcheck
run: go install honnef.co/go/tools/cmd/staticcheck@latest
- name: Run staticcheck
run: staticcheck ./...
- name: Install golint
run: go install golang.org/x/lint/golint@latest
- name: Run golint
run: golint ./...
- name: Run tests
run: go test -race -vet=off ./...
build:
runs-on: ubuntu-latest
strategy:
matrix:
arch: ['amd64', 'arm64']
# arch: ['amd64', '386', 'arm64']
# os: ['linux', 'windows', 'darwin']
os: ['linux']
# exclude:
# - arch: 386
# os: darwin
steps:
# Checkout the repository and submodules
- name: Checkout repository
uses: actions/checkout@v4
with:
submodules: recursive
# Set up Node.js environment
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: 18
# cache: 'pnpm'
# Install pnpm
- name: Install pnpm
run: npm install -g pnpm@latest
# Install dependencies and build the React app
- name: Build React App
working-directory: pkg/ui/web
run: |
pnpm install
pnpm run build
# Optional: Display the build output
- name: Display build output
run: tree --si dist
working-directory: pkg/ui/web
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: 1.22
- name: Build
run: GOOS=${{ matrix.os }} GOARCH=${{ matrix.arch }} go build -o skypier-vpn-${{ matrix.os }}-${{ matrix.arch }} -ldflags "-s -w" -trimpath -buildvcs=false cmd/skypier-vpn-node/main.go
- name: Upload Release
uses: actions/upload-artifact@v4
with:
name: Skypier-VPN-${{ matrix.os }}-${{ matrix.arch }}
path: skypier-vpn-${{ matrix.os }}-${{ matrix.arch }}