Skip to content

Bump @typescript-eslint/eslint-plugin from 6.7.2 to 6.7.3 #293

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

Bump @typescript-eslint/eslint-plugin from 6.7.2 to 6.7.3 #293

Workflow file for this run

# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: Pull Request Checks
on:
pull_request:
branches: [master]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: 16.x
- name: Use npm 9
run: npm i -g npm@9
- name: Install Dependencies
run: npm ci
- name: Check Prettier Formatting
run: npm run test:format
- name: Run ESLint
run: npm run lint
- name: Run Unit Tests
run: npm run test:unit
- name: Build
run: npm run build --if-present