-
-
Notifications
You must be signed in to change notification settings - Fork 6
79 lines (76 loc) · 2.17 KB
/
build.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
name: Build and deploy
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Lint PR title
if: ${{ github.event_name == 'pull_request' }}
uses: amannn/action-semantic-pull-request@v5
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20.x
- name: Setup pnpm
uses: pnpm/action-setup@v4
- name: Install
run: pnpm install --frozen-lockfile=false
- name: Build
run: pnpm run build
- name: Build documentation
run: |
pnpm run docs
touch ./docs/.nojekyll
- name: Lint
run: pnpm run lint
- name: Run unit tests
run: pnpm run test:unit
- name: Upload code coverage to codecov
uses: codecov/codecov-action@v4
- name: Run integration tests
run: pnpm run test:integration
- name: Check package output
run: pnpx pkg-ok
publish:
needs: build
if: github.event_name == 'push'
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20.x
- name: Setup pnpm
uses: pnpm/action-setup@v4
- name: Install
run: pnpm install --frozen-lockfile=false
- name: Build
run: pnpm run build
- name: Set git credentials
run: |
git config --local user.email "[email protected]"
git config --local user.name "GitHub Action"
- name: Set npm credentials
run: echo //registry.npmjs.org/:_authToken=$NPM_AUTH_TOKEN > ~/.npmrc
env:
NPM_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}
- name: Publish
uses: cycjimmy/semantic-release-action@v4
with:
semantic_version: 19
branches: main
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}