Add search history and UI changes #351
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: build-release | |
on: | |
push: | |
branches: | |
- 'feature/renderer-wasm-demo' | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
build-release: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Use Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '21.x' | |
cache: "npm" | |
cache-dependency-path: package-lock.json | |
- name: Install build dependencies | |
run: sudo apt-get install ninja-build | |
- name: Install npm dependencies | |
run: npm -g install --force --include=dev | |
- name: Build demo with Emscripten | |
run: | | |
$GITHUB_WORKSPACE/ci/00_linux_setup.bash | |
$GITHUB_WORKSPACE/ci/10_linux_build.bash | |
- name: Release artifacts | |
uses: actions/[email protected] | |
with: | |
name: erdblick | |
path: | | |
static/* |