Skip to content

updated ci to not be bad (#11) #105

updated ci to not be bad (#11)

updated ci to not be bad (#11) #105

Workflow file for this run

name: Deploy to github pages
on:
push:
branches: [main]
jobs:
Check_and_Publish:
runs-on: ubuntu-latest
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v4
# setups pnpm
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v4
with:
node-version: 22
- name: Install `node_modules`
run: pnpm install
- name: Lint Check
run: pnpm checks
- name: Build
run: pnpm build
- name: Deploy
uses: JamesIves/github-pages-deploy-action@v4
with:
branch: gh-pages
folder: dist