Skip to content

proof of concept for customizing with theme variables #153

proof of concept for customizing with theme variables

proof of concept for customizing with theme variables #153

Workflow file for this run

# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: Build & Test
on: push
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install EB Components modules
run: yarn install
working-directory: ./embedded-components
- name: Build EB Components
run: yarn build
working-directory: ./embedded-components
- name: Install modules
run: yarn install
working-directory: ./app/client
- name: Build
run: yarn build
working-directory: ./app/client
- name: Run tests
run: yarn run test:no-watch
working-directory: ./app/client