Skip to content

fix: pop-window content line-height #64

fix: pop-window content line-height

fix: pop-window content line-height #64

Workflow file for this run

name: Deploy to Github Pages
on:
push:
branches:
- main
jobs:
build-and-deploy:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '14'
- uses: actions/cache@v2
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: ${{ runner.os }}-node-
- run: npm install
working-directory: generate
- run: npm run build
working-directory: generate
- uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: generate/build
user_name: 'github-actions[bot]'
user_email: 'github-actions[bot]@users.noreply.github.com'