-
Notifications
You must be signed in to change notification settings - Fork 1
55 lines (42 loc) · 1.12 KB
/
ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
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