forked from inertiajs/inertia
-
Notifications
You must be signed in to change notification settings - Fork 2
40 lines (33 loc) · 984 Bytes
/
build.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: Build
on: [push, pull_request]
jobs:
build:
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.repository
timeout-minutes: 15
runs-on: ubuntu-20.04
strategy:
matrix:
adapter: ['react', 'vue2', 'vue3']
node-version: [20]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v3
with:
version: 9
- name: Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'pnpm'
- name: Install packages
run: pnpm install
- name: Build Inertia
run: |
cd packages/core && pnpm run build
cd ../${{ matrix.adapter }} && pnpm run build
- name: Build Playground
run: |
cd playgrounds/${{ matrix.adapter }}
pnpm run build