We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 540e0a6 commit 12bf943Copy full SHA for 12bf943
.github/workflows/lint.yml renamed to .github/workflows/ci.yml
@@ -1,15 +1,24 @@
1
-name: Run Linters
+name: CI
2
3
on:
4
push:
5
+ paths-ignore:
6
+ - "docs/**"
7
+ - ".md"
8
branches:
9
- main
10
pull_request:
11
12
13
+ - "*.md"
14
+ branches:
15
+ - main
16
17
jobs:
- lint:
18
+ build:
19
name: ${{ matrix.os }}
20
runs-on: ${{ matrix.os }}
21
+ timeout-minutes: 10
22
strategy:
23
matrix:
24
os: [ubuntu-latest, macos-latest, windows-latest]
@@ -30,3 +39,6 @@ jobs:
30
39
31
40
- name: Types
32
41
run: yarn run typecheck
42
+
43
+ - name: Build
44
+ run: yarn run build
0 commit comments