Skip to content

Chore(release): Publish #5195

Chore(release): Publish

Chore(release): Publish #5195

Workflow file for this run

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
NX_NO_CLOUD: true
jobs:
build:
name: Building on node ${{ 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