Skip to content

Bump @typescript-eslint/parser from 6.2.0 to 6.7.3 #727

Bump @typescript-eslint/parser from 6.2.0 to 6.7.3

Bump @typescript-eslint/parser from 6.2.0 to 6.7.3 #727

Workflow file for this run

name: CI
on:
push:
branches:
- main
- master
- dev
- release-*
pull_request:
types: [opened, synchronize, reopened]
branches:
- main
- master
- dev
- release-*
jobs:
CI:
strategy:
matrix:
# node-version: [10.x, 12.x, 14.x]
node-version: [14.x]
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v3
- name: Set up nodejs version ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install package
run: npm install
- name: Build
run: npm run build --if-present
- name: Test
run: npm run test
- name: SonarCloud Scan
uses: sonarsource/sonarcloud-github-action@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}