Skip to content

enable edge runtime for api routes #37

enable edge runtime for api routes

enable edge runtime for api routes #37

Workflow file for this run

# This workflow will do a clean installation of node dependencies, check code formatting, lint
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: CI
on:
push:
pull_request:
branches:
- main
jobs:
prettier:
name: Prettier
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Setup pnpm
uses: pnpm/action-setup@v2
with:
version: 8
run_install: true
- name: Format
run: pnpm run format:check
eslint:
name: ESLint
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Setup pnpm
uses: pnpm/action-setup@v2
with:
version: 8
run_install: true
- name: Lint
run: pnpm run lint