Skip to content

Commit 12bf943

Browse files
author
hywax
committed
ci: refactor ci plan
1 parent 540e0a6 commit 12bf943

File tree

1 file changed

+14
-2
lines changed

1 file changed

+14
-2
lines changed

Diff for: .github/workflows/lint.yml renamed to .github/workflows/ci.yml

+14-2
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,24 @@
1-
name: Run Linters
1+
name: CI
22

33
on:
44
push:
5+
paths-ignore:
6+
- "docs/**"
7+
- ".md"
58
branches:
69
- main
710
pull_request:
11+
paths-ignore:
12+
- "docs/**"
13+
- "*.md"
14+
branches:
15+
- main
816

917
jobs:
10-
lint:
18+
build:
1119
name: ${{ matrix.os }}
1220
runs-on: ${{ matrix.os }}
21+
timeout-minutes: 10
1322
strategy:
1423
matrix:
1524
os: [ubuntu-latest, macos-latest, windows-latest]
@@ -30,3 +39,6 @@ jobs:
3039

3140
- name: Types
3241
run: yarn run typecheck
42+
43+
- name: Build
44+
run: yarn run build

0 commit comments

Comments
 (0)