Skip to content

fix layout issue

fix layout issue #8

Workflow file for this run

name: build
on: [push]
jobs:
ci:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
steps:
- name: 🛎️ Checkout
uses: actions/checkout@v2
with:
persist-credentials: false
- name: 🔢 Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: 📶 Install
run: |
yarn
env:
CI: true
- name: 💚 Lint
run: |
yarn lint
env:
CI: true
- name: 🛠 Build Client
run: |
yarn client:build
env:
CI: true
REACT_APP_LDS_KEY: ${{ secrets.REACT_APP_LDS_KEY }}
- name: ⚛ Deploy Client
if: ${{ github.ref == 'refs/heads/main' }}
uses: JamesIves/[email protected]
with:
ACCESS_TOKEN: ${{ secrets.ACCESS_TOKEN }}
BRANCH: gh-pages
FOLDER: build