Skip to content

Bump @typescript-eslint/eslint-plugin from 4.33.0 to 6.9.1 #418

Bump @typescript-eslint/eslint-plugin from 4.33.0 to 6.9.1

Bump @typescript-eslint/eslint-plugin from 4.33.0 to 6.9.1 #418

Workflow file for this run

name: CI
on:
push:
branches:
- '*'
tags:
- '*'
pull_request:
branches:
- '*'
jobs:
build:
if: "!contains(github.event.head_commit.message, 'skip ci')"
runs-on: ubuntu-latest
strategy:
matrix:
node:
- 10.x
- 12.x
- 14.x
name: Node.js ${{ matrix.node }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3.4.1
name: Installing Node.js v${{ matrix.node }}
with:
node-version: ${{ matrix.node }}
- name: Installing dependencies
run: |
npm install
- name: Lint the code
run: |
npm run lint
- name: Compile TypeScript
run: |
npm run build
- name: Execute tests
run: |
npm run test