Skip to content

消し忘れ

消し忘れ #17

name: "Packages Code Check"
on:
push:
branches:
- "**"
paths-ignore:
- "examples/**"
- "**.md"
tags-ignore:
- "**"
env:
# テレメトリーを無効
TURBO_TELEMETRY_DISABLED: 1
jobs:
code-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
with:
fetch-tags: "false"
- uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6.0.0
with:
node-version-file: ".node-version"
cache: "npm"
- run: npm ci
- run: npm run build:packages
- run: npm run typecheck:packages