-
Notifications
You must be signed in to change notification settings - Fork 7
executable file
·54 lines (43 loc) · 1.04 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
name: ci
on:
push:
branches:
- develop
- rc
- stable
pull_request:
branches:
- develop
- rc
- stable
workflow_dispatch:
jobs:
ci:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
node: [18]
steps:
- name: Checkout 🛎
uses: actions/checkout@v4
- uses: pnpm/action-setup@v2
with:
version: 7
- name: Setup node env 🏗
uses: actions/setup-node@v3
id: setup_node_id
with:
node-version: ${{ matrix.node }}
check-latest: true
cache: pnpm
- name: preparing configs ⏚
run: cp guccho.ui.config.example.ts guccho.ui.config.ts && cp guccho.backend.config.example.ts guccho.backend.config.ts && cp .env.example .env
- name: install dependencies 🎁
run: pnpm install
- name: type check ⚙️
run: pnpm typecheck
- name: Run linter 👀
run: pnpm lint
- name: Test build 👀
run: pnpm build