Skip to content

deps: bump @typescript-eslint/eslint-plugin from 8.60.0 to 8.64.0 #101

deps: bump @typescript-eslint/eslint-plugin from 8.60.0 to 8.64.0

deps: bump @typescript-eslint/eslint-plugin from 8.60.0 to 8.64.0 #101

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
contents: read
jobs:
build-and-test:
name: Build, Lint & Test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6 # v6.0.2
- name: Setup Node.js
uses: actions/setup-node@v6 # v6.4.0
with:
node-version: 20
cache: npm
- name: Install dependencies
run: npm install
- name: Typecheck
run: npm run typecheck
- name: Lint
run: npm run lint
- name: Test
run: npm test
- name: Build
run: npm run build
- name: Verify dist/ is up-to-date
run: |
if [ "$(git diff --name-only dist/)" != "" ]; then
echo "::error::dist/ is out of date. Run 'npm run build' and commit the result."
git diff --stat dist/
exit 1
fi
- name: Security audit
run: npm audit --audit-level=high --omit=dev