Skip to content

feat: add ability to customize class on main element #173 #580

feat: add ability to customize class on main element #173

feat: add ability to customize class on main element #173 #580

Workflow file for this run

name: 'Build marketing website'
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Cache node modules
uses: actions/cache@v2
env:
cache-name: cache-node-modules-workspaces
with:
path: |
~/.npm
**/node_modules
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-build-${{ env.cache-name }}-
${{ runner.os }}-build-
${{ runner.os }}-
- name: Build marketing website
run: |
npm install -w packages/amagaki -w packages/website
npm run build -w packages/website