-
Notifications
You must be signed in to change notification settings - Fork 1
44 lines (36 loc) · 988 Bytes
/
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
name: Build
on:
push:
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
jobs:
build:
name: Building on node ${{ matrix.node-version }})
runs-on: ubuntu-22.04
timeout-minutes: 10
strategy:
matrix:
# supporting primarily LTS
node-version: [16, 18, 20]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Node
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Fetch Git history
run: git fetch --no-tags --depth=50 origin main
- name: Install dependencies
uses: bahmutov/[email protected]
with:
useRollingCache: true
- name: Build packages
run: yarn build