Skip to content

Merge branch 'main' into feat-gmail #69

Merge branch 'main' into feat-gmail

Merge branch 'main' into feat-gmail #69

Workflow file for this run

name: Code check
on: [push, pull_request]
env:
NODE_VERSION: 20
jobs:
lint:
runs-on: ubuntu-latest
name: pnpm lint
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: pnpm/action-setup@v2
with:
version: 8
- name: Install Node.js
uses: actions/setup-node@v3
with:
node-version: ${{ env.NODE_VERSION }}
cache: 'pnpm'
- name: Install dependencies
run: pnpm install
- run: pnpm run lint
format:
runs-on: ubuntu-latest
name: bun format:check
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: pnpm/action-setup@v2
with:
version: 8
- name: Install Node.js
uses: actions/setup-node@v3
with:
node-version: ${{ env.NODE_VERSION }}
cache: 'pnpm'
- name: Install dependencies
run: pnpm install
- run: pnpm run format:check