π remove debug console.log from contact route #517
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: 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" | |
| 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 |