-
Notifications
You must be signed in to change notification settings - Fork 2
63 lines (50 loc) · 1.4 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
56
57
58
59
60
61
62
63
name: ci
on:
push:
branches:
- main
pull_request:
branches:
- '**'
jobs:
ci:
runs-on: ${{ matrix.os }}
if: "!contains(github.event.head_commit.message, '[ci skip]')"
strategy:
matrix:
os: [ubuntu-latest]
node: [18]
steps:
- name: Checkout 🛎
uses: actions/checkout@master
- name: Setup pnpm 🦾
uses: pnpm/action-setup@v2
with:
version: 8
- name: Setup node env 🏗
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
check-latest: true
cache: 'pnpm'
- name: Setup Next application 🥾
run: |
cp .github/apps.web.env apps/web/.env
cp .github/apps.sanity.env apps/sanity/.env
- name: Install root + src dependencies 👨🏻💻
run: pnpm install
- name: Run linters 👀
run: |
pnpm --dir apps/web lint
pnpm --dir apps/sanity lint
- name: Run type checking 📚
run: |
pnpm --dir apps/web typecheck
pnpm --dir apps/sanity typecheck
#- name: Run tests 🧪
# run: pnpm test
# Builds are already handled by the Vercel integration, so no need to run this here
#- name: Build app 🖥
# run: pnpm --dir apps/web build
#- name: Build app 🖥
# run: pnpm --dir apps/sanity build