Skip to content

Bump typescript from 5.4.4 to 5.4.5 #415

Bump typescript from 5.4.4 to 5.4.5

Bump typescript from 5.4.4 to 5.4.5 #415

Workflow file for this run

---
name: Lint Codebase
on:
pull_request:
branches: [master]
jobs:
build:
name: Lint Codebase
runs-on: ubuntu-latest
permissions:
contents: read
packages: read
statuses: write
steps:
- name: Check out code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Super-Linter
uses: super-linter/super-linter@v5
env:
VALIDATE_ALL_CODEBASE: true
VALIDATE_CSS: false
VALIDATE_TYPESCRIPT_STANDARD: false
FILTER_REGEX_EXCLUDE: .*(\.min\.|sw\.js|workbox).*
DEFAULT_BRANCH: master
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}