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

Version Packages

Version Packages #8324

Workflow file for this run

name:Quality
on:
push:
branches:
-main
pull_request:
branches:
-main
concurrency:
group:${{ github.workflow }}-${{ github.ref }}
cancel-in-progress:${{ github.ref != 'refs/heads/main' }}
env:
FORCE_COLOR:2
TURBO_TOKEN:${{ secrets.TURBO_TOKEN }}
TURBO_TEAM:${{ secrets.TURBO_TEAM }}
jobs:
tests:
name:Unit Tests
runs-on:ubuntu-latest
steps:
-name:Checkout
uses:actions/checkout@v5
-name:Install
uses:./.github/composite-actions/install
-name:Run tests
run:pnpm test
e2e:
name:End-to-end Tests
runs-on:ubuntu-latest
strategy:
fail-fast:false
matrix:
shard:[1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12]
steps:
-name:Checkout
uses:actions/checkout@v5
-name:Install
uses:./.github/composite-actions/install
-name:Cache Playwright Browsers
uses:actions/cache@v4
id:playwright-cache
with:
path:~/.cache/ms-playwright
key:${{ runner.os }}-playwright-${{ hashFiles('**/pnpm-lock.yaml') }}
-name:Install Playwright Browsers
if:steps.playwright-cache.outputs.cache-hit != 'true'
run:pnpm playwright install --with-deps
-name:Run tests
run:pnpm playwright test --shard=${{ matrix.shard }}/${{ strategy.job-total }}
env:
FRAMEWORK:react
eslint:
name:ESLint
runs-on:ubuntu-latest
steps:
-name:Checkout
uses:actions/checkout@v5
-name:Install
uses:./.github/composite-actions/install
-name:Run ESLint
run:pnpm lint
env:
NODE_OPTIONS:"--max-old-space-size=4096"
types:
name:TypeScript
runs-on:ubuntu-latest
steps:
-name:Checkout
uses:actions/checkout@v5
-name:Install
uses:./.github/composite-actions/install
-name:Run TypeScript type check
run:pnpm typecheck
checks:
name:Check for various issues
runs-on:ubuntu-latest
steps:
-name:Checkout
uses:actions/checkout@v5
-name:Install
uses:./.github/composite-actions/install
-name:Check type exports
run:pnpm check-type-exports

[8]ページ先頭

©2009-2025 Movatter.jp