This repository was archived by the owner on Nov 13, 2025. It is now read-only.
chore(deps): update dependency prettier-plugin-tailwindcss to ^0.7.1 #9550
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: Build | |
| on: [push, pull_request] | |
| jobs: | |
| codegen-and-build-indexers: | |
| runs-on: ubuntu-latest | |
| defaults: | |
| run: | |
| working-directory: indexers | |
| name: Indexers - Run codegen and build | |
| steps: | |
| - name: Checkout ποΈ | |
| uses: actions/checkout@v3 | |
| - name: Set up Node.js π¦ | |
| uses: actions/setup-node@v2 | |
| with: | |
| node-version: "20" | |
| - name: Enable Corepack π¦ | |
| run: corepack enable | |
| - name: Install dependencies π¦ | |
| run: yarn install | |
| - name: Generate types and project manifest π | |
| run: yarn codegen | |
| - name: Check code formatting π¨ | |
| run: yarn format:check | |
| - name: Run linter π | |
| run: yarn lint | |
| - name: Build project π§ | |
| run: yarn build | |
| ts-lint-and-build-explorer: | |
| runs-on: ubuntu-latest | |
| defaults: | |
| run: | |
| working-directory: explorer | |
| name: Explorer - Run eslint and code style check | |
| steps: | |
| - name: Checkout ποΈ | |
| uses: actions/checkout@v3 | |
| - name: Set up Node.js π¦ | |
| uses: actions/setup-node@v2 | |
| with: | |
| node-version: "20" | |
| - name: Enable Corepack π¦ | |
| run: corepack enable | |
| - name: Install dependencies π¦ | |
| run: yarn install | |
| - name: Run linter π | |
| run: yarn lint:fix | |
| - name: Build project π§ | |
| env: | |
| AUTO_DRIVE_API_KEY: ${{ secrets.AUTO_DRIVE_API_KEY }} | |
| AUTO_EVM_RPC_URL: ${{ secrets.AUTO_EVM_RPC_URL }} | |
| USER_SESSION_CONTRACT_ADDRESS: ${{ secrets.USER_SESSION_CONTRACT_ADDRESS }} | |
| USER_SESSION_PRIVATE_KEY: ${{ secrets.USER_SESSION_PRIVATE_KEY }} | |
| NEXT_PUBLIC_MAINNET_INDEXERS: ${{ secrets.NEXT_PUBLIC_MAINNET_INDEXERS }} | |
| NEXT_PUBLIC_TAURUS_INDEXERS: ${{ secrets.NEXT_PUBLIC_TAURUS_INDEXERS }} | |
| run: yarn build |