Skip to content

feat: implement GitHub OAuth for blog publishing (#350) #259

feat: implement GitHub OAuth for blog publishing (#350)

feat: implement GitHub OAuth for blog publishing (#350) #259

Workflow file for this run

name: Lint & Format Check
on:
pull_request:
branches: [main, master]
jobs:
check:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
repository: ${{ github.event.pull_request.head.repo.full_name }}
ref: ${{ github.event.pull_request.head.sha }}
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: "20"
cache: "npm"
- name: Install dependencies
run: npm install
- name: Run Prettier check
run: npx prettier --check .
- name: Run ESLint
run: npx eslint .