Skip to content

Commit 153aece

Browse files
committed
initial CI
1 parent 48d9de3 commit 153aece

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

.github/workflows/main.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: CI
2+
3+
on: [push, pull_request, workflow_dispatch]
4+
5+
jobs:
6+
build-linux:
7+
runs-on: ubuntu-22.04
8+
9+
steps:
10+
- uses: actions/checkout@v4
11+
12+
- name: Build
13+
run: |
14+
git clone https://github.com/vial-kb/vial-gui.git
15+
git clone https://github.com/vial-kb/via-keymap-precompiled.git
16+
./fetch-emsdk.sh
17+
./fetch-deps.sh
18+
./build-deps.sh
19+
cd src
20+
./build.sh
21+
22+
- uses: actions/upload-artifact@v4
23+
with:
24+
name: vial-web
25+
path: src/build

0 commit comments

Comments
 (0)