Skip to content

refactor: client app to use latest specifications #15

refactor: client app to use latest specifications

refactor: client app to use latest specifications #15

Workflow file for this run

name: Build client app
on:
pull_request:
paths:
- "terracotta/client/app/**"
push:
branches:
- main
paths:
- "terracotta/client/app/**"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
ref: ${{ github.head_ref }}
- uses: actions/setup-node@v1
with:
node-version: 12
- name: Build app
run: |
pushd terracotta/client/app
yarn install --frozen-lockfile
yarn build
popd
- name: Commit changes
uses: stefanzweifel/[email protected]
with:
commit_message: "[skip ci] Commit latest build"