Skip to content

Update eslint-plugin-prettier 4.2.1 → 5.1.3 (major) #5166

Update eslint-plugin-prettier 4.2.1 → 5.1.3 (major)

Update eslint-plugin-prettier 4.2.1 → 5.1.3 (major) #5166

Workflow file for this run

name: Linting (Pull Request)
on: pull_request
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
env:
REALM_DISABLE_ANALYTICS: 1
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: "recursive"
- uses: actions/setup-node@v3
with:
node-version: 20
# Install the root package (--ignore-scripts to avoid downloading or building the native module)
- name: Install root package dependencies
run: npm ci --ignore-scripts
- name: Run linting of subpackages
run: npm run lint
- name: Run linting of C++ code
run: npm run lint:cpp