Skip to content

chore(deps-dev): bump @typescript-eslint/parser from 7.0.2 to 7.8.0 #832

chore(deps-dev): bump @typescript-eslint/parser from 7.0.2 to 7.8.0

chore(deps-dev): bump @typescript-eslint/parser from 7.0.2 to 7.8.0 #832

Workflow file for this run

name: Test
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node: [18, 20]
name: Node ${{ matrix.node }} Test
steps:
- uses: actions/checkout@v4
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- name: Restore NPM cache
uses: actions/cache@v4
continue-on-error: true
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- run: npm ci
- run: npm run lint
- run: npm run coverage
- name: Coveralls
uses: coverallsapp/github-action@v2
with:
github-token: ${{ secrets.github_token }}
format: lcov
file: "./coverage/lcov.info"