-
-
Notifications
You must be signed in to change notification settings - Fork 207
65 lines (53 loc) · 1.61 KB
/
pull_request.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
name: Pull request
on:
pull_request
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18, 20, 22]
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: Setup Bun
uses: oven-sh/setup-bun@v1
- name: Cache node modules
uses: actions/cache@v4
id: cache-node-modules
env:
cache-name: cache-node-modules
with:
path: |
./node_modules
./packages/*/node_modules
key: ${{ runner.os }}-${{ matrix.node-version }}-build-${{ env.cache-name }}-${{ hashFiles('./packages/*/package-lock.json') }}-${{ hashFiles('./package-lock.json') }}
- name: Cache turbo
uses: actions/cache@v4
id: cache-turbo
with:
path: .turbo
key: turbo-${{ github.ref_name }}-${{ github.sha }}
restore-keys: |
turbo-${{ github.ref_name }}
- name: Restore turbo cache from master
if: steps.cache-turbo.outputs.cache-hit != 'true'
uses: actions/cache/restore@v3
with:
path: .turbo
key: turbo-master
- name: Install dependencies
if: steps.cache-node-modules.outputs.cache-hit != 'true'
run: npm ci --ignore-scripts
- name: Compile package
run: npm run compile
- name: Lint
run: npm run lint
- name: Test
run: npm run test