Skip to content

feat: setup lunaria (#259) #360

feat: setup lunaria (#259)

feat: setup lunaria (#259) #360

Workflow file for this run

# @See https://pages.github.com/
name: GITHUB_PAGE
on:
# trigger deployment on every push to main branch
push:
branches:
- main
- next
- dev
# @See https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions
paths-ignore:
- '**/__tests__/**'
- './README.md'
# trigger deployment manually
workflow_dispatch:
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
concurrency:
group: pages
cancel-in-progress: false
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
# fetch all commits to get last updated time or other git log info
fetch-depth: 0
- name: Setup Node.js
uses: actions/setup-node@v3
with:
# choose node.js version to use
node-version: '18'
- name: Cache pnpm modules
uses: actions/cache@v2
with:
path: ~/.pnpm-store
key: ${{ runner.os }}-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-
- name: Setup Pages
uses: actions/configure-pages@v3
- name: Install dependencies
uses: pnpm/action-setup@v2
with:
run_install: true
- name: Build site
run: pnpm build
- name: Upload artifact
uses: actions/upload-pages-artifact@v2
with:
path: ./dist/
# Deployment job
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
needs: build
runs-on: ubuntu-latest
name: Deploy
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2