name: WASM CI
on:
push:
branches: [ master, develop ]
pull_request:
branches: [ master, develop ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Compile
run: make -j
- name: Compile WASM REPL
run: bash tools/buildwasm
- name: Upload build Artifacts
uses: actions/upload-artifact@v2
with:
name: Nujel-Web-${{ github.ref_name }}
path: "./web/"
retention-days: 7