Skip to content

feat: Add ViewPassagePage (Inital Version) #5

feat: Add ViewPassagePage (Inital Version)

feat: Add ViewPassagePage (Inital Version) #5

Workflow file for this run

name: Build and Deploy
on:
push:
branches:
- main
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Install dependencies using pnpm
run: |
npm install -g pnpm
pnpm install
- name: Run linter
run: pnpm run lint
- name: Build project
run: pnpm run build
- name: Deploy to gh-pages branch
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./out