Skip to content

feat: add overflow hidden #40

feat: add overflow hidden

feat: add overflow hidden #40

Workflow file for this run

name: Deploy to GitHub Pages
on:
push:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
env:
NEXT_PUBLIC_BASE_PATH: /Game-of-Life
strategy:
matrix:
node-version: [14.x]
steps:
- name: Get files
uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- uses: pnpm/action-setup@v2.1.0
with:
version: latest
- name: Install packages
run: pnpm install
- name: Build and export project
run: pnpm build && pnpm export
- name: Add .nojekyll file
run: touch ./build/.nojekyll
- name: Deploy
uses: JamesIves/github-pages-deploy-action@4.1.1
with:
branch: gh-pages
clean: true
folder: build