Skip to content

feat(study): optimistic locking to prevent concurrent overwrites (#999) #405

feat(study): optimistic locking to prevent concurrent overwrites (#999)

feat(study): optimistic locking to prevent concurrent overwrites (#999) #405

Workflow file for this run

name: PR Checks
on:
pull_request_target:
branches:
- main
- develop
push:
branches:
- main
- develop
jobs:
check:
runs-on: ubuntu-latest
steps:
- name: Checkout PR code
uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.sha }}
repository: ${{ github.event.pull_request.head.repo.full_name }}
- name: Install dependencies
run: npm ci
- name: Run basic checks
run: |
echo "Running safe checks (no secrets required)..."
npm run lint