File tree Expand file tree Collapse file tree 2 files changed +35
-80
lines changed Expand file tree Collapse file tree 2 files changed +35
-80
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 7676 - name : zig build release
7777 run : zig build -Doptimize=ReleaseSafe -Dengine=v8
7878
79+ - name : upload artifact
80+ uses : actions/upload-artifact@v4
81+ with :
82+ name : lightpanda-build-release
83+ path : |
84+ zig-out/bin/lightpanda
85+ retention-days : 1
86+
7987 zig-test :
8088 name : zig test
8189
@@ -131,3 +139,30 @@ jobs:
131139
132140 - name : format and send json result
133141 run : /perf-fmt bench-browser ${{ github.sha }} bench.json
142+
143+ demo-puppeteer :
144+ name : demo-puppeteer
145+ needs : zig-build-release
146+
147+ runs-on : ubuntu-latest
148+
149+ steps :
150+ - uses : actions/checkout@v4
151+ with :
152+ repository : ' lightpanda-io/demo'
153+ fetch-depth : 0
154+
155+ - run : npm install
156+
157+ - name : download artifact
158+ uses : actions/download-artifact@v4
159+ with :
160+ name : lightpanda-build-release
161+
162+ - run : ls -lr
163+
164+ - name : run puppeteer
165+ run : |
166+ go run ws/main.go &
167+ ./lightpanda &
168+ npm run bench-puppeteer-cdp
You can’t perform that action at this time.
0 commit comments