Skip to content

πŸ”‡ remove debug console.log from contact route #517

πŸ”‡ remove debug console.log from contact route

πŸ”‡ remove debug console.log from contact route #517

Workflow file for this run

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