feat: remove prop drill, add messages #29
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: | |
paths: | |
- 'apps/**' | |
- 'packages/**' | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
proompteng: | |
runs-on: arc-arm64 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: pnpm/action-setup@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 22.12.0 | |
cache: 'pnpm' | |
- run: pnpm install --frozen-lockfile | |
- uses: actions/cache@v4 | |
with: | |
path: | | |
${{ github.workspace }}/apps/proompteng/.next/cache | |
key: ${{ runner.os }}-nextjs-proompteng-${{ hashFiles('**/pnpm-lock.yaml') }}-${{ hashFiles('**/*.js', '**/*.jsx', '**/*.ts', '**/*.tsx') }} | |
restore-keys: | | |
${{ runner.os }}-nextjs-proompteng-${{ hashFiles('**/pnpm-lock.yaml') }}- | |
- run: pnpm --filter proompteng build | |
findbobastore: | |
runs-on: arc-arm64 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: pnpm/action-setup@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 22.12.0 | |
cache: 'pnpm' | |
- run: pnpm install --frozen-lockfile | |
- uses: actions/cache@v4 | |
with: | |
path: | | |
${{ github.workspace }}/apps/findbobastore/.next/cache | |
key: ${{ runner.os }}-nextjs-findbobastore-${{ hashFiles('**/pnpm-lock.yaml') }}-${{ hashFiles('**/*.js', '**/*.jsx', '**/*.ts', '**/*.tsx') }} | |
restore-keys: | | |
${{ runner.os }}-nextjs-findbobastore-${{ hashFiles('**/pnpm-lock.yaml') }}- | |
- run: pnpm --filter findbobastore build |