-
Notifications
You must be signed in to change notification settings - Fork 0
76 lines (61 loc) · 1.54 KB
/
ci.yml
File metadata and controls
76 lines (61 loc) · 1.54 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
name: CI
on:
push:
branches:
- main
- dev
pull_request:
branches:
- main
- dev
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
permissions:
# semantic-release needs these to create GitHub releases and comment on linked issues/PRs
contents: write
issues: write
# npm provenance on GitHub Actions requires OIDC even when authentication uses NPM_TOKEN
id-token: write
pull-requests: write
jobs:
ci:
name: ci
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: pnpm/action-setup@v4
with:
version: 10.32.1
- uses: actions/setup-node@v4
with:
node-version-file: .nvmrc
cache: pnpm
- run: pnpm install --frozen-lockfile
- name: Lint
run: pnpm run lint
- name: Typecheck
run: pnpm run typecheck
- name: Unit Tests
run: pnpm run test:unit
- name: E2E Tests
run: pnpm run test:e2e
- name: Coverage
run: pnpm run test:coverage
- name: Upload Coverage
uses: codecov/codecov-action@v5
with:
files: ./coverage/lcov.info
fail_ci_if_error: false
token: ${{ secrets.CODECOV_TOKEN }}
- name: Build
run: pnpm run build
- name: Release
if: github.event_name == 'push'
env:
GH_TOKEN: ${{ secrets.GH_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
HUSKY: 0
run: pnpm run release