This repository has been archived by the owner on Sep 20, 2024. It is now read-only.
fix(components): Add missing as prop on some layout components #226
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
on: | |
push: | |
branches: | |
- develop | |
pull_request: | |
branches: | |
- develop | |
jobs: | |
build: | |
name: Build | |
timeout-minutes: 20 | |
runs-on: ubuntu-latest | |
env: | |
# NODE_OPTIONS: "--max-old-space-size=16384" | |
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }} | |
TURBO_TEAM: ${{ secrets.TURBO_TEAM }} | |
steps: | |
- name: Checkout branch | |
uses: actions/checkout@v3 | |
- name: Install | |
uses: ./.github/composite-actions/install | |
- name: Check Code Formatting | |
run: pnpm lint | |
- name: Run Component Tests | |
run: | |
pnpm test:ci && pnpm cy:run --component --record --key $CYPRESS_COMPONENT_TESTING_KEY | |
env: | |
CYPRESS_COMPONENT_TESTING_KEY: | |
${{ secrets.CYPRESS_COMPONENT_TESTING_KEY }} | |
CI: true | |
- name: Build packages | |
run: pnpm build:ci |