-
Notifications
You must be signed in to change notification settings - Fork 0
40 lines (39 loc) · 1.23 KB
/
CI4PRs.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
name: CI for Pull Requests
on:
pull_request:
branches: [ "master" ]
push:
branches: ["!master"]
jobs:
deploy:
name: Test and build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
name: Clone the repository
with:
fetch-depth: 0
- uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.0
name: Install Node.JS
with:
node-version: 20.x
- uses: pnpm/action-setup@fe02b34f77f8bc703788d5817da081398fad5dd2 # v4.0.0
name: Install pnpm
with:
version: 9
run_install: false
- name: Get pnpm store directory
shell: bash
run: echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
- name: Setup pnpm cache
uses: actions/cache@6849a6489940f00c2f30c0fb92c6274307ccb58a #
with:
path: ${{env.STORE_PATH}}
key: ${{runner.os}}-pnpm-cache-${{ hashFiles('./pnpm-lock.yaml')}}
restore-keys: ${{runner.os}}-pnpm-cache-
- name: Install dependencies
shell: bash
run: pnpm install --frozen-lockfile
- name: Build website
shell: bash
run: pnpm build