Skip to content
This repository has been archived by the owner on Oct 23, 2023. It is now read-only.

Bump @typescript-eslint/eslint-plugin from 5.62.0 to 6.7.2 #2487

Bump @typescript-eslint/eslint-plugin from 5.62.0 to 6.7.2

Bump @typescript-eslint/eslint-plugin from 5.62.0 to 6.7.2 #2487

Workflow file for this run

name: Unit tests and coverage
on: [push]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node: ["14"]
name: Jest unit tests and coveralls push
steps:
- uses: actions/checkout@v3
- name: Setup node ${{ matrix.node }}
uses: actions/[email protected]
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies and coveralls
run: |
npm ci
npm install coveralls
- name: Run unit tests and save coverage
run: CI=true npm test -- --coverage
- name: Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
path-to-lcov: ./jest-coverage/lcov.info