Skip to content

Bump @typescript-eslint/eslint-plugin from 6.10.0 to 6.19.0 #152

Bump @typescript-eslint/eslint-plugin from 6.10.0 to 6.19.0

Bump @typescript-eslint/eslint-plugin from 6.10.0 to 6.19.0 #152

Workflow file for this run

name: 'CI'
on:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
lintAndTest:
name: Lint & Test
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v1
- name: Use Node.js v18
uses: actions/setup-node@v1
with:
node-version: 18
- name: Install Packages
run: npm install
- name: Format
run: npm run format:check
- name: Lint
run: npm run lint:check
- name: Type Check
run: npm run type:check
- name: Test
run: npm test --ci