mirror of
https://github.com/zoriya/Bomberman.git
synced 2026-06-12 21:24:16 +00:00
c1be763a9b
This reverts commit 56f1b321c0.
23 lines
458 B
YAML
23 lines
458 B
YAML
name: Web Build (Emscripten)
|
|
on:
|
|
push:
|
|
branches:
|
|
wasm
|
|
|
|
jobs:
|
|
Push:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
with:
|
|
submodules: true
|
|
- name: Exec
|
|
shell: bash
|
|
run: ./build_web.sh
|
|
- name: Check files creation
|
|
run: |
|
|
test -f build_web/bomberman.html
|
|
test -f build_web/bomberman.js
|
|
test -f build_web/bomberman.wasm
|
|
test -f build_web/bomberman.data
|