Skip to content

Build tokens

Build tokens #1

Workflow file for this run

name: Build tokens
on:
workflow_dispatch:
pull_request:
branches:
- main
paths:
- 'design-tokens/**'
jobs:
checks:
name: Builds, lints and tests code
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
repository: ${{ github.event.pull_request.head.repo.full_name }}
ref: ${{ github.event.pull_request.head.ref }}
- name: Use node 20 and yarn cache
uses: actions/setup-node@v3
with:
node-version: '20'
cache: 'yarn'
- name: Install dependencies
run: yarn install --immutable
- name: Build
run: yarn build:tokens