Skip to content

Bump @typescript-eslint/eslint-plugin from 7.17.0 to 8.18.1 #510

Bump @typescript-eslint/eslint-plugin from 7.17.0 to 8.18.1

Bump @typescript-eslint/eslint-plugin from 7.17.0 to 8.18.1 #510

Workflow file for this run

name: Node.js CI
on:
push:
branches: [ main ]
pull_request:
branches: [ release, main ]
permissions: {}
jobs:
build:
name: Build and test
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- uses: actions/checkout@v4
- name: Build and test
uses: actions/setup-node@v4
with:
node-version: '20'
- run: npm ci
- run: npm run all
- name: Check for un-staged changes
id: diff
run: |
if [ "$(git diff --ignore-space-at-eol | wc -l)" -gt "0" ]; then
echo "Detected uncommitted changes after build. See status below:"
git diff
exit 1
fi
- uses: actions/upload-artifact@v4
if: ${{ failure() && steps.diff.conclusion == 'failure' }}
with:
name: dist
path: dist/