Feat/20230904 minio #176
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
# masterブランチへのpushに対応する | |
push: | |
branches: ["master"] | |
# プルリクエストでのCIに対応する | |
pull_request: | |
types: [opened, synchronize] | |
# 手動での実行に対応する | |
workflow_dispatch: | |
jobs: | |
check: | |
runs-on: ubuntu-latest | |
timeout-minutes: 15 | |
# 環境変数の読み込み | |
env: | |
SCHEMA_PATH: ../graphql/schemas/*.graphql | |
# OPERATION_PATH: ../graphql/operations/*.graphql | |
# 実行ステップ | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: pnpm/[email protected] | |
with: | |
version: 8.6.3 | |
- name: Setup Node.js environment | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
cache: "pnpm" | |
# 依存関係のインストール | |
- name: install dependencies | |
run: pnpm install --frozen-lockfile | |
# 型チェック | |
- name: typecheck | |
run: pnpm turbo typecheck | |
# ビルド | |
- name: build | |
run: pnpm turbo build | |
# - name: eslint | |
# run: pnpm lint | |
# - name: prettier | |
# run: pnpm format |