Skip to content
This repository has been archived by the owner on Oct 4, 2024. It is now read-only.

npm: bump @typescript-eslint/eslint-plugin from 5.57.0 to 6.7.4 #90

npm: bump @typescript-eslint/eslint-plugin from 5.57.0 to 6.7.4

npm: bump @typescript-eslint/eslint-plugin from 5.57.0 to 6.7.4 #90

Workflow file for this run

name: Tests
on:
pull_request:
branches:
- main
# Cancel any active builds when new commits are pushed
concurrency:
group: ${{ github.ref }}-${{ github.workflow }}
cancel-in-progress: true
jobs:
JEST:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
- name: Run CI
run: npm ci
- name: Run Tests
run: npm run test
- name: Publish Results
uses: dorny/test-reporter@v1
if: always()
with:
name: JS Report
path: "reports/*.xml"
reporter: jest-junit