feat(schema): update component can get and sku but not both #907
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: | |
push: | |
branches: ['main'] | |
pull_request: | |
types: [opened, synchronize, reopened] | |
jobs: | |
lint: | |
name: π Prettier | |
runs-on: ubuntu-latest | |
steps: | |
- name: β¬οΈ Checkout repo | |
uses: actions/checkout@v4 | |
- uses: actionsx/prettier@v3 | |
with: | |
args: --check . | |
test: | |
name: π§ͺ Tests | |
runs-on: ubuntu-latest | |
needs: [lint] | |
strategy: | |
matrix: | |
node: [18, 20] | |
env: | |
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }} | |
TURBO_TEAM: ${{ secrets.TURBO_TEAM }} | |
steps: | |
- name: π Cancel Previous Runs | |
uses: styfle/cancel-workflow-action@0.12.1 | |
- name: β¬οΈ Checkout repo | |
uses: actions/checkout@v4 | |
- name: β Setup node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node }} | |
- name: β Set up pnpm | |
uses: pnpm/action-setup@v4 | |
with: | |
version: 9.5.0 | |
- name: π₯ Download deps | |
run: | | |
echo ::group::..:: Mono Repo Tests ::.. | |
pnpm install | |
echo ::endgroup:: | |
- name: π Run the tests | |
run: | | |
echo ::group::..:: Mono Repo Tests ::.. | |
pnpm run test | |
echo ::endgroup:: | |
sync: | |
name: πΏ Sync Doc to Crystallize | |
if: github.event_name == 'push' && github.ref_name == 'main' | |
runs-on: ubuntu-latest | |
needs: [lint, test] | |
steps: | |
- name: π Cancel Previous Runs | |
uses: styfle/cancel-workflow-action@0.12.1 | |
- name: β¬οΈ Checkout repo | |
uses: actions/checkout@v4 | |
- name: β Setup node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- name: β Set up pnpm | |
uses: pnpm/action-setup@v4 | |
with: | |
version: 9.5.0 | |
- name: π₯ Download deps | |
run: pnpm install && pnpm run build | |
- name: π Sync it! | |
env: | |
MARKDOWN_TO_CRYSTALLIZE_SHARED_KEY: ${{ secrets.MARKDOWN_TO_CRYSTALLIZE_SHARED_KEY }} | |
run: | | |
for COMPONENT in `ls components`; do | |
if [ -d "components/${COMPONENT}" ]; then | |
echo ::group::..:: ${COMPONENT} ::.. | |
node apps/doc2crystallize/build/index.js components/${COMPONENT}/README.md | |
echo ::endgroup:: | |
fi | |
done |