Skip to content

Commit a89ada6

Browse files
authored
[chore] Setup CI
1 parent ebcf0df commit a89ada6

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

.github/workflows/ci.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: CI
2+
on: [push]
3+
4+
jobs:
5+
build:
6+
runs-on: ubuntu-latest
7+
8+
steps:
9+
- uses: actions/checkout@v4
10+
- name: Setup Go
11+
uses: actions/setup-go@v5
12+
with:
13+
go-version: '1.22.x'
14+
- name: Setup Node.js
15+
uses: actions/setup-node@v4
16+
with:
17+
node-version: '20.x'
18+
- name: Install Go dependencies
19+
run: go get .
20+
- name: Build
21+
run: make build-web build-wasm
22+
- name: Run Go Tests
23+
run: go test -v ./...

0 commit comments

Comments
 (0)