Skip to content

RDSを使用するように変更2 #166

RDSを使用するように変更2

RDSを使用するように変更2 #166

Workflow file for this run

# name: Biome CI
# on:
# pull_request:
# paths:
# - 'frontend/**'
# push:
# branches:
# - main
# - develop
# paths:
# - 'frontend/**'
# jobs:
# biome:
# name: Run Biome
# runs-on: ubuntu-latest
# steps:
# - name: Checkout code
# uses: actions/checkout@v4
# - name: Setup Node.js
# uses: actions/setup-node@v4
# with:
# node-version: '20'
# cache: 'npm'
# cache-dependency-path: frontend/package-lock.json
# - name: Install dependencies
# working-directory: frontend
# run: npm ci
# - name: Run Biome format check
# working-directory: frontend
# run: npx @biomejs/biome format --diagnostic-level=error ./src
# - name: Run Biome lint
# working-directory: frontend
# run: npx @biomejs/biome lint --diagnostic-level=error ./src