-
-
Notifications
You must be signed in to change notification settings - Fork 0
52 lines (45 loc) · 1.01 KB
/
ci.yaml
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
name: CI
on:
push:
paths:
- .github/workflows/ci.yaml
- src/**
- .prettierrc
- build.config.ts
- package.json
- pnpm-lock.yaml
- tsconfig.json
pull_request:
branches:
- main
paths:
- .github/workflows/ci.yaml
- src/**
- .prettierrc
- build.config.ts
- package.json
- pnpm-lock.yaml
- tsconfig.json
jobs:
build_and_lint:
name: Build and Lint
runs-on: ubuntu-latest
strategy:
matrix:
node_version: [18, 20, latest]
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v3
- name: Install Node ${{ matrix.node_version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node_version }}
cache: pnpm
- name: Install packages
run: pnpm i
- name: Check formatting
run: pnpm lint:prettier
- name: Build package
run: pnpm build