-
Notifications
You must be signed in to change notification settings - Fork 0
88 lines (74 loc) · 2.34 KB
/
Copy pathci.yml
File metadata and controls
88 lines (74 loc) · 2.34 KB
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
name: CI
on:
workflow_dispatch:
push:
branches:
- main
pull_request_target:
types:
- opened
- reopened
- synchronize
- ready_for_review
paths:
- "packages/**"
- "samples/**"
- "serverless/**"
- "servers/**"
- "starters/**"
- "package.json"
- "pnpm-lock.yaml"
- "pnpm-workspace.yaml"
- "*.json"
- "*.js"
- "*.ts"
- "*.yaml"
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
verify-and-build:
runs-on: [ubuntu-latest]
if: (!github.event.pull_request || github.event.pull_request.draft == false)
env:
CI: false
NODE_OPTIONS: --max-old-space-size=4096
steps:
- name: Checkout repository
uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
name: Install pnpm
with:
run_install: false
- name: Use node.js
uses: actions/setup-node@v4
with:
node-version: 22.x
cache: "pnpm"
- name: Install dependencies
shell: bash
run: pnpm install --frozen-lockfile
- name: build all packages
run: pnpm build
- name: Check code Style
run: pnpm lint-format
- name: Execute Linter
run: pnpm lint
- name: type checking # Check this later on to run tsc:full instead to check transitive dependencies as well
run: pnpm tsc
- name: verify type dependencies
run: pnpm nodeboot:check:type-deps
- name: ensure clean working directory
run: |
if files=$(git ls-files --exclude-standard --others --modified) && [[ -z "$files" ]]; then
exit 0
else
echo ""
echo "Working directory has been modified:"
echo ""
git status --short
echo ""
exit 1
fi