generated from dragonfish/node-ts-template
-
Notifications
You must be signed in to change notification settings - Fork 0
53 lines (42 loc) · 1.13 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
name: pr
on:
pull_request:
branches:
- main
push:
branches:
- trunk-merge/**
permissions: read-all
env:
SERVICE_NAME: trip-service
jobs:
lint:
timeout-minutes: 10
name: Lint
runs-on: ubuntu-latest
permissions:
checks: write # For trunk to post annotations
contents: read
steps:
- name: Checkout Code
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
- name: Setup pnpm
uses: pnpm/action-setup@v2
with:
version: 8
- name: Setup Node
uses: actions/setup-node@b39b52d1213e96004bfcb1c61a8a6fa8ab84f3e8 # v4
with:
node-version-file: .nvmrc
cache: pnpm
- name: Install Packages
run: pnpm install
- uses: bufbuild/buf-setup-action@88db93f5d74ffa329bb43e42aa95cd822697d214 # v1.29.0
with:
github_token: ${{ github.token }}
- name: Build protobuf
run: buf generate --include-imports
- name: Lint
uses: trunk-io/trunk-action@97ecd21fe6c743bf7a606791584b683a7995c70e # v1
# - name: Test
# run: npm test:integration