Merge pull request #236 from CrystallizeAPI/feature/shop-api-functions #880
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@v3 | |
- uses: actionsx/prettier@v2 | |
with: | |
# prettier CLI arguments. | |
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/[email protected] | |
- name: β¬οΈ Checkout repo | |
uses: actions/checkout@v3 | |
- name: β Setup node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node }} | |
- name: π₯ Download deps | |
run: | | |
echo ::group::..:: Mono Repo Tests ::.. | |
yarn | |
echo ::endgroup:: | |
- name: π Run the tests | |
run: | | |
echo ::group::..:: Mono Repo Tests ::.. | |
yarn test | |
echo ::endgroup:: | |
builds: | |
name: π Test Standalone Builds | |
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/[email protected] | |
- name: β¬οΈ Checkout repo | |
uses: actions/checkout@v3 | |
- name: β Setup node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node }} | |
- name: π₯ Download deps and builds folder by folder | |
run: | | |
rm -f package.json | |
rm -f yarn.lock | |
rm -rf node_modules | |
for COMPONENT in `ls components`; do | |
if [ -d "components/${COMPONENT}" ]; then | |
echo ::group::..:: ${COMPONENT} ::.. | |
cd components/${COMPONENT} && yarn install && yarn build && cd -; | |
echo ::endgroup:: | |
fi | |
done | |
sync: | |
name: πΏ Sync Doc to Crystallize | |
if: github.event_name == 'push' && github.ref_name == 'main' | |
runs-on: ubuntu-latest | |
needs: [lint, test, builds] | |
steps: | |
- name: π Cancel Previous Runs | |
uses: styfle/[email protected] | |
- name: β Setup node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 20 | |
- name: β¬οΈ Checkout repo | |
uses: actions/checkout@v3 | |
- name: π₯ Download deps | |
run: yarn install && yarn 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 |