-
Notifications
You must be signed in to change notification settings - Fork 0
50 lines (44 loc) · 1.29 KB
/
ci.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
name: "CI: Lint, Typecheck, Test and Build"
permissions: {}
on:
- push
- pull_request
jobs:
ci:
runs-on: ubuntu-latest
permissions:
contents: write # Required for annotating files
steps:
#
# Checkout the code
#
- name: Checkout code
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
#
# Setup PNPM
#
- name: Setup PNPM
uses: pnpm/action-setup@fe02b34f77f8bc703788d5817da081398fad5dd2 # v4.0.0
with:
run_install: false
#
# Setup Node.js
#
- name: Setup Node.js
uses: actions/setup-node@0a44ba7841725637a19e28fa30b79a866c81b0a6 # v4.0.4
with:
node-version-file: .node-version
#
# Install dependencies
#
- name: Install Dependencies
shell: bash
run: |
pnpm install --frozen-lockfile
#
# Run Lint + Typecheck + Test + Build
#
- name: Lint + Typecheck + Test + Build
shell: bash
run: |
pnpm run prepublishOnly