2021-11-01 20:45:51 +00:00
|
|
|
name: Wasm Build
|
2023-03-13 15:18:01 +00:00
|
|
|
permissions:
|
|
|
|
contents: read
|
2021-11-01 20:45:51 +00:00
|
|
|
|
2023-01-16 15:29:02 +00:00
|
|
|
on: [push, pull_request]
|
2021-11-01 20:45:51 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
2023-10-18 18:56:29 +00:00
|
|
|
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
|
2023-01-23 15:32:39 +00:00
|
|
|
with:
|
|
|
|
fetch-depth: '0'
|
2021-11-01 20:45:51 +00:00
|
|
|
- name: Build web
|
2022-12-21 21:22:17 +00:00
|
|
|
run: docker-compose -f source/wasm/docker-compose.yml --project-directory . up
|
2021-11-01 20:45:51 +00:00
|
|
|
- name: Run tests
|
|
|
|
run: node test/wasm/test.js
|