Skip to content

chore(deps): update typescript-eslint monorepo to v8.15.0 - autoclosed #736

chore(deps): update typescript-eslint monorepo to v8.15.0 - autoclosed

chore(deps): update typescript-eslint monorepo to v8.15.0 - autoclosed #736

Workflow file for this run

name: Node.js CI
on:
push:
branches: [master]
paths:
- ".github/workflows/nodejs.yml"
- "**.cjs"
- "**.json"
- "src/**"
pull_request:
branches: [master]
paths:
- ".github/workflows/nodejs.yml"
- "**.cjs"
- "**.json"
- "src/**"
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [22.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: npm
- name: Install npm dependencies
run: npm install
- name: Run tests
run: npm run test
- name: Coveralls
uses: coverallsapp/github-action@v2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
lint:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [22.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: npm
- name: Install npm dependencies
run: npm install
- name: Run lint
run: NODE_ENV=production npm run lint