mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-14 20:19:34 +01:00
69 lines
1.2 KiB
YAML
69 lines
1.2 KiB
YAML
name: ci-v3
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- v3
|
|
pull_request:
|
|
branches:
|
|
- v3
|
|
|
|
jobs:
|
|
ci:
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
permissions:
|
|
contents: read
|
|
pull-requests: read
|
|
|
|
strategy:
|
|
matrix:
|
|
os: [ubuntu-latest] # macos-latest, windows-latest
|
|
node: [22]
|
|
|
|
env:
|
|
NUXT_GITHUB_TOKEN: ${{ secrets.NUXT_GITHUB_TOKEN }}
|
|
|
|
steps:
|
|
- name: Checkout
|
|
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
|
|
run: pnpm run dev:prepare
|
|
|
|
- name: Devtools prepare
|
|
run: pnpm run devtools:prepare
|
|
|
|
- name: Lint
|
|
run: pnpm run lint
|
|
|
|
- name: Typecheck
|
|
run: pnpm run typecheck
|
|
|
|
- name: Test
|
|
run: pnpm run test
|
|
|
|
- name: Test (vue)
|
|
run: pnpm run test:vue
|
|
|
|
- name: Build
|
|
run: pnpm run build
|
|
|
|
- name: Build vue fixture
|
|
run: pnpm run test:vue:build
|
|
|
|
- name: Publish
|
|
run: pnpx pkg-pr-new publish --compact --no-template --pnpm
|