Character page + mint flow mobile UI #76
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: Skaffold Build PR Check | |
on: | |
pull_request: | |
branches: | |
- develop | |
types: | |
- opened | |
- synchronize | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v2 | |
- name: Install Skaffold | |
run: | | |
curl -Lo skaffold https://storage.googleapis.com/skaffold/releases/latest/skaffold-linux-amd64 | |
sudo install skaffold /usr/local/bin/ | |
shell: bash | |
- name: Skaffold build precheck | |
run: | | |
cd frontend | |
export $(grep -v '^#' .env.emerynet | xargs) | |
envsubst < skaffold.precheck.yaml > skaffold.emerynet.yaml | |
skaffold build --filename skaffold.emerynet.yaml | |
shell: bash | |