-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
48 lines (45 loc) · 1.04 KB
/
test.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
name: test
on:
push:
branches:
- "master"
- "main"
- "v4"
pull_request:
branches:
- master
- main
- v4
jobs:
test-node:
runs-on: ubuntu-latest
strategy:
matrix:
node: ["latest"]
typescript: ["5.0", "next"]
name: Test with TypeScript ${{ matrix.typescript }} on Node ${{ matrix.node }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- uses: pnpm/action-setup@v4
- run: pnpm install
- run: pnpm add typescript@${{ matrix.typescript }} -w
- run: pnpm build
- run: pnpm test
lint:
runs-on: ubuntu-latest
strategy:
matrix:
node: ["latest"]
name: Lint on Node ${{ matrix.node }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- uses: pnpm/action-setup@v4
- run: pnpm install
- run: pnpm format:check
- run: pnpm lint:check