-
Notifications
You must be signed in to change notification settings - Fork 68
67 lines (51 loc) · 1.43 KB
/
on-push.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
name: On Push
on:
push:
branches:
- main
- master
jobs:
build-and-test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node-version: [lts/-2, lts/-1, lts/*, current]
steps:
- uses: actions/checkout@v4
- name: Setup pnpm 📦️
uses: pnpm/action-setup@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: pnpm
- run: node --version
- run: pnpm install --frozen-lockfile
- run: pnpm run test
- run: pnpm run build
- uses: codecov/codecov-action@v4
generate-docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup pnpm 📦️
uses: pnpm/action-setup@v2
- name: Use Node.js LTS
uses: actions/setup-node@v4
with:
node-version: lts/*
cache: pnpm
- run: pnpm install --frozen-lockfile
- name: Run typegen
run: pnpm run generate-docs
- name: Create Pull Request
uses: peter-evans/create-pull-request@v5
with:
branch: update-documentation
delete-branch: true
commit-message: 'chore(docs): run typegen'
title: 'chore(docs): run typegen'
body:
'This is automatically created since the documentation is out of
date.'