Skip to content

Bump @typescript-eslint/parser from 6.9.0 to 6.19.0 #67

Bump @typescript-eslint/parser from 6.9.0 to 6.19.0

Bump @typescript-eslint/parser from 6.9.0 to 6.19.0 #67

Workflow file for this run

name: Run Tests, Lint, and Build
on:
push:
branches: [main]
pull_request:
branches: [main]
paths-ignore:
- '**.md'
- 'LICENSE'
- 'CODEOWNERS'
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
defaults:
run:
shell: bash
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Checkout and Setup Node
uses: ./.github/actions/checkout-and-setup
- name: Lint
run: npm run --if-present lint
unit-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Checkout and Setup Node
uses: ./.github/actions/checkout-and-setup
- name: Run Unit Tests
run: npm test
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Checkout and Setup Node
uses: ./.github/actions/checkout-and-setup
- name: Build
run: npm run --if-present build