Skip to content

feat: verify-token 時に read:basic_info scope あれば基本的な情報を渡す #117

feat: verify-token 時に read:basic_info scope あれば基本的な情報を渡す

feat: verify-token 時に read:basic_info scope あれば基本的な情報を渡す #117

Workflow file for this run

name: Lint
on:
push:
branches:
- main
workflow_dispatch:
pull_request:
branches:
- main
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
version: 9
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: 20
cache: 'pnpm'
- name: Install deps
run: pnpm install
- name: Build package
run: pnpm build
working-directory: ./package
- name: Lint
run: pnpm lint