Skip to content

fix: 設定画面以外でリロードした際に設定値が読み込まれない不具合を修正した fix #247 #153

fix: 設定画面以外でリロードした際に設定値が読み込まれない不具合を修正した fix #247

fix: 設定画面以外でリロードした際に設定値が読み込まれない不具合を修正した fix #247 #153

Workflow file for this run

name: Lint
on:
pull_request:
workflow_dispatch:
jobs:
lint:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
node: ['20.x']
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
ref: ${{ github.event.pull_request.head.ref }}
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- uses: pnpm/action-setup@v3
name: Install pnpm
with:
version: 9.0.5
run_install: false
- name: Get pnpm store directory
shell: bash
run: |
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
- uses: actions/cache@v4
id: node_modules_cache_id
with:
path: ${{ env.STORE_PATH }}
key: ${{ runner.os }}-node-v${{ matrix.node }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
- run: pnpm install
- run: pnpm lint