Skip to content

feat(layout): add controlOnLeft option #21

feat(layout): add controlOnLeft option

feat(layout): add controlOnLeft option #21

Workflow file for this run

name: Publish
on:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node: [12]
steps:
- uses: actions/checkout@v2
- name: Set up Nodejs ${{ matrix.node }}
uses: actions/setup-node@v1
- name: Install dependencies
env:
CI: true
run: npm install
- name: Test
run: npm test
- name: Build
run: npm run build
- name: Publish
if: success()
env:
GH_TOKEN: ${{ secrets.GH_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: npx semantic-release
- name: Build the new version for the demo
if: success()
run: npm run build
- name: Deploy - https://draggable.github.io/formeo/
if: success()
env:
GH_PAT: ${{ secrets.GH_TOKEN }}
BUILD_DIR: demo/
uses: maxheld83/[email protected]