-
Notifications
You must be signed in to change notification settings - Fork 69
80 lines (62 loc) · 1.74 KB
/
workflow.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
80
name: Release
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@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: yarn
- run: node --version
- run: yarn install
- run: yarn test
- run: yarn run build
- name: Bundlewatch
run: yarn run bundlewatch
env:
BUNDLEWATCH_GITHUB_TOKEN: '${{ secrets.BJERKBOT_GITHUB_TOKEN }}'
CI_BRANCH_BASE: main
release-please:
runs-on: ubuntu-latest
permissions:
contents: write
pull-requests: write
steps:
- uses: actions/checkout@v3
- uses: google-github-actions/release-please-action@v3
id: release
with:
token: ${{ secrets.BJERKBOT_GITHUB_TOKEN }}
release-type: node
package-name: create-bjerk-typescript
generate-docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: lts/*
cache: yarn
- run: yarn install
- name: Run typegen
run: yarn 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.'