-
Notifications
You must be signed in to change notification settings - Fork 0
52 lines (40 loc) · 1 KB
/
test.yml
File metadata and controls
52 lines (40 loc) · 1 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
name: Test
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ${{ matrix.os }}
timeout-minutes: 10
strategy:
matrix:
node_version: [18.x]
os: [ubuntu-latest, windows-latest]
fail-fast: false
steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
- name: Set node version to ${{ matrix.node_version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node_version }}
cache: pnpm
- name: Install
run: pnpm i
- name: Build
env:
# https://stackoverflow.com/questions/38558989/node-js-heap-out-of-memory/66914674#66914674
NODE_OPTIONS: --max_old_space_size=4096
run: pnpm run build
- name: Test
run: pnpm run test
- name: Lint
env:
NODE_OPTIONS: --max_old_space_size=4096
run: pnpm run lint
- name: TypeCheck
run: pnpm run typecheck