-
Notifications
You must be signed in to change notification settings - Fork 1
53 lines (41 loc) · 1.06 KB
/
ci.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
49
50
51
52
53
name: CI
on:
pull_request:
branches:
- '*'
push:
branches:
- 'main'
jobs:
run-ci:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
name: Run Type Check & Linters
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up Node
uses: actions/setup-node@v3
with:
node-version: 18
- name: Install dependencies (with cache)
uses: bahmutov/npm-install@v1
- name: Run TypeScript type check
run: yarn type-check
- name: Run TypeScript lint
run: yarn lint
- uses: pre-commit/action@v3.0.0
name: 'Run pre-commit checks'
with:
extra_args: --all-files --show-diff-on-failure
- name: Check commits messages
uses: wagoid/commitlint-github-action@v5
- name: Run unit tests
run: yarn test:ci
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
with:
fail_ci_if_error: true