Merge pull request #1186 from tobiaslins/fix-priority-rn-sqlite #32
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: Build Starters | |
on: | |
push: | |
branches: [ "main" ] | |
jobs: | |
build-starters: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
starter: [ | |
"react-demo-auth-tailwind", | |
] | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: true | |
- name: Enable corepack | |
run: corepack enable | |
- name: Install Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version-file: '.node-version' | |
cache: 'pnpm' | |
- name: Get pnpm store directory | |
shell: bash | |
run: | | |
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV | |
- uses: actions/cache@v3 | |
name: Setup pnpm cache | |
with: | |
path: ${{ env.STORE_PATH }} | |
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} | |
restore-keys: | | |
${{ runner.os }}-pnpm-store- | |
- name: Install dependencies | |
run: pnpm install --frozen-lockfile | |
- name: Pnpm Build | |
run: | | |
pnpm install | |
pnpm turbo build; | |
working-directory: ./starters/${{ matrix.starter }} |