Skip to content

deps(renovate): update dependency @typescript-eslint/eslint-plugin to v7 #1151

deps(renovate): update dependency @typescript-eslint/eslint-plugin to v7

deps(renovate): update dependency @typescript-eslint/eslint-plugin to v7 #1151

Workflow file for this run

on: [push, pull_request]
jobs:
Lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 16.x
cache: npm
- run: npm ci
- run: npm run lint
Test:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
node: [16.x, 14.x, 12.x]
runs-on: ${{ matrix.os }}
steps:
- run: git config --global core.autocrlf false
- run: git config --global core.eol lf
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node }}
cache: npm
- run: npm ci
- run: npm run build
- run: npx c8 npm test
- run: npx c8 report --reporter=text-lcov > coverage.lcov
- uses: codecov/codecov-action@v2