Skip to content

chore: bump @typescript-eslint/eslint-plugin from 5.61.0 to 6.18.0 #1040

chore: bump @typescript-eslint/eslint-plugin from 5.61.0 to 6.18.0

chore: bump @typescript-eslint/eslint-plugin from 5.61.0 to 6.18.0 #1040

Workflow file for this run

name: CI
on:
# Run on every pull request
pull_request:
branches: [main]
types: [opened, synchronize, reopened]
push:
branches: [main]
env:
NODE_VERSION: 16.x
jobs:
checkstyle:
name: Checkstyle
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ env.NODE_VERSION }}
cache: 'npm'
- run: npm ci
- run: npm run lint:ci
lint-helm:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Lint Helm
uses: WyriHaximus/github-action-helm3@v3
with:
exec: helm lint ./deploy/charts/prox-web-client
sonarcloud:
name: SonarCloud
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: SonarCloud Scan
uses: SonarSource/sonarcloud-github-action@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}