-
Notifications
You must be signed in to change notification settings - Fork 1
47 lines (39 loc) · 1.04 KB
/
build.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
name: 🏗️ Build
on:
# Run this workflow on push to branches only (not tags)
push:
branches:
- '**'
paths:
- packages/design-tokens/**
- packages/icons/**
- packages/web/**
- packages/web-react/**
env:
NX_CLOUD_ACCESS_TOKEN: ${{ secrets.NX_CLOUD_ACCESS_TOKEN }}
NX_BRANCH: ${{ github.event.number || github.ref_name }}
NX_VERBOSE_LOGGING: true
NX_NO_CLOUD: true
jobs:
build:
name: 👷 Building on Node.js ${{ matrix.node-version }})
runs-on: ubuntu-24.04
timeout-minutes: 10
strategy:
matrix:
# supporting primarily LTS
node-version: [18, 20, 22]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Enable Corepack
run: corepack enable
- name: Configure Node
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'yarn'
- name: Install dependencies
run: yarn --immutable --inline-builds
- name: Build packages
run: yarn build