Skip to content

feat(desktop): refactor database creation into reusable dialog component #286

feat(desktop): refactor database creation into reusable dialog component

feat(desktop): refactor database creation into reusable dialog component #286

Workflow file for this run

name: Lint Check
on:
pull_request:
types: [opened, synchronize]
branches:
- main
jobs:
eslint:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.sha }}
- name: Install Bun
uses: oven-sh/setup-bun@v1
with:
bun-version: latest
- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
version: 10.28.0
- name: Restore cached dependencies
id: cache-restore
uses: actions/cache@v3
with:
path: |
node_modules
~/.pnpm-store
key: pnpm-${{ hashFiles('pnpm-lock.yaml') }}
- name: Install dependencies
if: steps.cache-restore.outputs.cache-hit != 'true'
run: pnpm install --frozen-lockfile --ignore-scripts
- name: Lint
run: pnpm lint