Skip to content

Bump @typescript-eslint/eslint-plugin from 5.59.8 to 6.7.3 #401

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

Bump @typescript-eslint/eslint-plugin from 5.59.8 to 6.7.3 #401

Workflow file for this run

name: CI
on:
pull_request: ~
push:
branches:
- develop
- master
jobs:
run:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v2
- name: Set up Node
uses: actions/setup-node@v2
with:
node-version: 18
check-latest: true
- name: Cache dependencies
id: cache-dependencies
uses: actions/cache@v2
with:
path: node_modules
key: ${{ runner.os }}-${{ hashFiles('**/package-lock.json') }}
- name: Install dependencies
if: steps.cache-dependencies.outputs.cache-hit != 'true'
run: npm ci
- name: Build project
run: npm run build
- name: lint
run: npm run lint
- name: test
run: npm run test