Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

fix: remove boolean and null from modal promise return types#4117

fix: remove boolean and null from modal promise return types

fix: remove boolean and null from modal promise return types #4117

Workflow file for this run

# This workflow runs through the test suite
name:ci
on:
push:
branches:
-dev
-main
pull_request:
branches:
-dev
-main
jobs:
build:
runs-on:ubuntu-latest
steps:
-name:Clone Repository
uses:actions/checkout@v4
-name:Install Node.js
uses:actions/setup-node@v4
with:
node-version:22.x.x
-name:Install PNPM
uses:pnpm/action-setup@v4
id:pnpm-install
-name:Get PNPM Store Directory
id:pnpm-cache
shell:bash
run:|
echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT
-name:Setup PNPM Cache
uses:actions/cache@v3
with:
path:${{ steps.pnpm-cache.outputs.STORE_PATH }}
key:${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys:|
${{ runner.os }}-pnpm-store-
-name:Install Dependencies
run:pnpm install --ignore-scripts --frozen-lockfile
-name:Build Library
run:pnpm run build
-name:Build Docs
run:pnpm --filter docs run build
-name:Validate Docs Page Structure
run:pnpm --filter docs run test:unit:ci
-name:Run publint
run:pnpm --filter bootstrap-vue-next run publint
-name:Run publint on Nuxt package
run:pnpm --filter @bootstrap-vue-next/nuxt run publint
-run:pnpx pkg-pr-new publish './packages/bootstrap-vue-next' './packages/nuxt' --template './templates/vite'
test-lint:
runs-on:ubuntu-latest
steps:
-name:Clone Repository
uses:actions/checkout@v4
-name:Install Node.js
uses:actions/setup-node@v4
with:
node-version:22.x.x
-name:Install PNPM
uses:pnpm/action-setup@v4
id:pnpm-install
-name:Get PNPM Store Directory
id:pnpm-cache
shell:bash
run:|
echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT
-name:Setup PNPM Cache
uses:actions/cache@v3
with:
path:${{ steps.pnpm-cache.outputs.STORE_PATH }}
key:${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys:|
${{ runner.os }}-pnpm-store-
-name:Install Dependencies
run:pnpm install --ignore-scripts --frozen-lockfile
-name:Test Lint
run:pnpm run test:lint:ci
test-unit:
runs-on:ubuntu-latest
steps:
-name:Clone Repository
uses:actions/checkout@v4
-name:Install Node.js
uses:actions/setup-node@v4
with:
node-version:22.x.x
-name:Install PNPM
uses:pnpm/action-setup@v4
id:pnpm-install
-name:Get PNPM Store Directory
id:pnpm-cache
shell:bash
run:|
echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT
-name:Setup PNPM Cache
uses:actions/cache@v3
with:
path:${{ steps.pnpm-cache.outputs.STORE_PATH }}
key:${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys:|
${{ runner.os }}-pnpm-store-
-name:Install Dependencies
run:pnpm install --ignore-scripts --frozen-lockfile
-name:Test Unit
run:pnpm run test:unit:ci --filter=!docs

[8]ページ先頭

©2009-2025 Movatter.jp