chore: Configure Renovate #39
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: CI | |
on: | |
pull_request: | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v2 | |
- name: Build WASM release | |
run: make docker_release | |
# This step will evaluate the repo status and exit if found changes | |
# This should detect if the most up-to-date WASM binary was pushed | |
- name: Changes validation | |
run: | | |
[[ -z "$(git status --porcelain)" ]] || exit 1 |