Skip to content

[DT-1250][risk=no] Check for lint in the files that have changed between this PR and the destination branch. #8

[DT-1250][risk=no] Check for lint in the files that have changed between this PR and the destination branch.

[DT-1250][risk=no] Check for lint in the files that have changed between this PR and the destination branch. #8

Workflow file for this run

on: [pull_request]
name: changed files lint
jobs:
scan:
name: npm lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
persist-credentials: false
fetch-depth: 0
fetch-tags: true
env:
NODE_VERSION: $(cat Dockerfile | awk 'NR==2 {gsub(":","@",$2); print $2}')
- uses: actions/setup-node@v4
with:
node-version: "$NODE_VERSION"
- name: install dependencies
run: npm ci
- name: npm lint
run: npx eslint $(git diff "origin/$GITHUB_REF" --name-only | xargs)
env:
GITHUB_REF: ${{ github.event.pull_request.base.ref }}