π fix prevent images from being draggable in partners section #541
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: CI | |
| on: [push] | |
| jobs: | |
| build: | |
| name: Build, lint, and test on Node | |
| runs-on: ubuntu-latest | |
| env: | |
| CI: true | |
| NEXT_PUBLIC_APP_URL: "https://onruntime.com" | |
| RESEND_API_KEY: ${{ secrets.RESEND_API_KEY }} | |
| steps: | |
| - name: Checkout repo | |
| uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 | |
| - name: Enable Corepack | |
| run: corepack enable | |
| - name: Use Node | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: "22.x" | |
| cache: "yarn" | |
| - name: Install Dependencies | |
| run: yarn | |
| - name: Lint | |
| run: yarn lint | |
| - name: Build | |
| run: yarn build |