Skip to content

Merge branch 'develop' into feature/support-repository-server #162

Merge branch 'develop' into feature/support-repository-server

Merge branch 'develop' into feature/support-repository-server #162

Workflow file for this run

name: ci-lint
on:
push:
branches:
- '**'
pull_request:
branches:
- '**'
types: [opened, reopened, synchronize]
permissions:
contents: read
jobs:
build-and-test:
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- uses: pnpm/action-setup@v5
name: Install pnpm
with:
run_install: false
- name: Install Node.js
uses: actions/setup-node@v6
with:
node-version-file: .nvmrc
cache: 'pnpm'
- name: Install dependencies
shell: bash
run: pnpm install --frozen-lockfile --strict-peer-dependencies
- name: Run Linting and Formatting Check
run: pnpm run lint