Tooltip + Popover in @cambly/syntax-core
, built on top of react-aria
library
#923
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |