-
Notifications
You must be signed in to change notification settings - Fork 1
69 lines (60 loc) · 1.55 KB
/
Copy pathci.yml
File metadata and controls
69 lines (60 loc) · 1.55 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
# .github/workflows/ci.yml
name: CI
on:
push:
branches: [main]
pull_request:
jobs:
build-and-test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.x, 22.x]
package-manager: [npm]
steps:
# 1) Checkout
- uses: actions/checkout@v3
# 2) Setup Node
- name: Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: ${{ matrix.package-manager }}
# 3) If we're using pnpm, install it
- name: Install pnpm
if: matrix.package-manager == 'pnpm'
run: npm install -g pnpm@8
# 4) Install dependencies
- name: Install dependencies (${{
matrix.package-manager
}})
run: |
if [ "${{ matrix.package-manager }}" = "npm" ]; then
npm ci
else
pnpm install --frozen-lockfile
fi
# 5) Lint (if present)
- name: Lint
run: |
if [ "${{ matrix.package-manager }}" = "npm" ]; then
npm run lint --if-present
else
pnpm run lint --if-present
fi
# 6) Build
- name: Build
run: |
if [ "${{ matrix.package-manager }}" = "npm" ]; then
npm run build
else
pnpm run build
fi
# 7) Test
- name: Test
run: |
if [ "${{ matrix.package-manager }}" = "npm" ]; then
npm test
else
pnpm test
fi