Skip to content

feat: add LTFT admin GET endpoints #5

feat: add LTFT admin GET endpoints

feat: add LTFT admin GET endpoints #5

name: Deploy PR Preview to GitHub Pages
permissions:
contents: write
pull-requests: write
on:
pull_request:
types:
- opened
- reopened
- synchronize
- closed
concurrency: preview-${{ github.ref }}
jobs:
deploy-preview:
name: Deploy PR preview to GitHub pages
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 22
cache: npm
- name: Build
if: github.event.action != 'closed'
run: npm install && npm run build
- name: Deploy preview
uses: rossjrw/pr-preview-action@v1
with:
source-dir: ./dist/
token: ${{ secrets.GITHUB_TOKEN }}