Skip to content

Bump typescript from 5.2.2 to 5.4.5 #327

Bump typescript from 5.2.2 to 5.4.5

Bump typescript from 5.2.2 to 5.4.5 #327

Workflow file for this run

---
name: linting
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
name: linting
strategy:
matrix:
node-version: [20.x]
steps:
- name: Checkout Repository
uses: actions/checkout@v4
with:
fetch-depth: 1
- name: Setup Node ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
always-auth: false
node-version: ${{ matrix.node-version }}
- name: Run npm install
run: npm install
- name: Run lint
run: npm run lint
env:
CI: true