Skip to content

Bump @typescript-eslint/eslint-plugin from 8.16.0 to 8.17.0 #4653

Bump @typescript-eslint/eslint-plugin from 8.16.0 to 8.17.0

Bump @typescript-eslint/eslint-plugin from 8.16.0 to 8.17.0 #4653

Workflow file for this run

name: CI
on: [ push, pull_request ]
defaults:
run:
shell: bash
jobs:
Server:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 9.0.x
- name: Install dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore
- name: Test
run: dotnet test --no-build --verbosity normal
App:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node.JS
uses: actions/setup-node@v4
with:
node-version: 22
- name: Install dependencies
run: yarn install
- name: Build
run: yarn build
- name: Test
run: yarn test