-
Notifications
You must be signed in to change notification settings - Fork 4
67 lines (64 loc) · 1.76 KB
/
pr.yaml
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: PR
on: [pull_request]
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v4
- name: setup pnpm
uses: pnpm/action-setup@v2
- name: setup node
uses: actions/setup-node@v3
with:
node-version: 21
cache: 'pnpm'
- name: install dependencies
run: pnpm install --frozen-lockfile
- name: typecheck
run: pnpm typecheck
- name: tests
run: pnpm test
bench:
name: Benchmark
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v4
- name: setup pnpm
uses: pnpm/action-setup@v2
- name: setup node
uses: actions/setup-node@v3
with:
node-version: 20
cache: 'pnpm'
- name: install dependencies
run: pnpm install --frozen-lockfile
- name: bench
run: pnpm bench
release_snapshot:
if: ${{ github.event.pull_request.title != 'Upcoming Release Changes' }}
name: Release snapshot
uses: the-guild-org/shared-config/.github/workflows/release-snapshot.yml@main
with:
npmTag: alpha
buildScript: build
nodeVersion: 20
packageManager: pnpm
secrets:
githubToken: ${{ secrets.GITHUB_TOKEN }}
npmToken: ${{ secrets.NPM_TOKEN }}
release_candidate:
uses: the-guild-org/shared-config/.github/workflows/release-snapshot.yml@main
name: Release candidate
if: ${{ github.event.pull_request.title == 'Upcoming Release Changes' }}
with:
npmTag: rc
restoreDeletedChangesets: true
buildScript: build
nodeVersion: 20
packageManager: pnpm
secrets:
githubToken: ${{ secrets.GITHUB_TOKEN }}
npmToken: ${{ secrets.NPM_TOKEN }}