fix: merge error #19
Workflow file for this run
This file contains hidden or 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: Landver Workflows | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - develop | |
| pull_request: | |
| branches: | |
| - main | |
| - develop | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| name: tests | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v3 | |
| - name: Set up Scarb | |
| uses: software-mansion/setup-scarb@v1 | |
| with: | |
| scarb-version: "2.9.2" | |
| - name: Set up SNForge | |
| uses: foundry-rs/setup-snfoundry@v3 | |
| with: | |
| starknet-foundry-version: "0.36.0" | |
| - name: Run tests | |
| run: snforge test | |
| working-directory: contracts/land_registry | |
| build-client: | |
| runs-on: ubuntu-latest | |
| name: Build all frontend apps | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v3 | |
| - name: Set up Node.js | |
| uses: actions/setup-node@v3 | |
| with: | |
| node-version: 20 | |
| - name: Install pnpm | |
| run: npm install -g pnpm | |
| - name: Cache pnpm store | |
| uses: actions/cache@v3 | |
| with: | |
| path: ~/.pnpm-store | |
| key: pnpm-${{ runner.os }}-${{ hashFiles('**/pnpm-lock.yaml') }} | |
| restore-keys: | | |
| pnpm-${{ runner.os }}- | |
| - name: Install dependencies (workspace-aware) | |
| run: pnpm install | |
| - name: Build all apps | |
| run: pnpm run build |