mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-14 20:19:34 +01:00
54 lines
1.1 KiB
YAML
54 lines
1.1 KiB
YAML
name: playground
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- v3
|
|
|
|
jobs:
|
|
deploy:
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
environment:
|
|
name: ${{ github.ref == 'refs/heads/v3' && 'production' || 'preview' }}
|
|
url: ${{ steps.deploy.outputs.deployment-url }}
|
|
|
|
permissions:
|
|
contents: read
|
|
id-token: write
|
|
|
|
strategy:
|
|
matrix:
|
|
os: [ubuntu-latest] # macos-latest, windows-latest
|
|
node: [22]
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Install pnpm
|
|
uses: pnpm/action-setup@v4
|
|
|
|
- name: Install node
|
|
uses: actions/setup-node@v4
|
|
with:
|
|
node-version: ${{ matrix.node }}
|
|
cache: pnpm
|
|
|
|
- name: Install dependencies
|
|
run: pnpm install
|
|
|
|
- name: Prepare build
|
|
run: pnpm run dev:prepare
|
|
|
|
- name: Build application
|
|
run: pnpm run dev:build
|
|
env:
|
|
NITRO_PRESET: cloudflare-pages
|
|
|
|
- name: Deploy to NuxtHub
|
|
uses: nuxt-hub/action@v1
|
|
id: deploy
|
|
with:
|
|
project-key: ui3-playground-pb9b
|
|
directory: playground/dist
|