Skip to content

TextArea: conditionally render label (#415) #1267

TextArea: conditionally render label (#415)

TextArea: conditionally render label (#415) #1267

Workflow file for this run

name: CI
on:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/setup
- run: pnpm run build
env:
NODE_OPTIONS: --max-old-space-size=8192
prettier:
name: Prettier
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/setup
- run: pnpm exec prettier --check .
env:
NODE_OPTIONS: --max-old-space-size=8192
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/setup
- run: cd packages/syntax-design-tokens && pnpm run build
env:
NODE_OPTIONS: --max-old-space-size=8192
- run: pnpm run lint
env:
NODE_OPTIONS: --max-old-space-size=8192
stylelint:
name: Stylelint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/setup
- run: pnpm run stylelint
env:
NODE_OPTIONS: --max-old-space-size=8192
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/setup
- run: cd packages/syntax-design-tokens && pnpm run build
env:
NODE_OPTIONS: --max-old-space-size=8192
- run: pnpm run test
env:
NODE_OPTIONS: --max-old-space-size=8192