Skip to content

Update JS/TS-Linters (major) #1308

Update JS/TS-Linters (major)

Update JS/TS-Linters (major) #1308

Workflow file for this run

# This is a basic workflow that is manually triggered
name: Lint
# Controls when the action will run. Workflow runs when manually triggered using the UI
# or API.
on:
push:
branches: [main]
pull_request:
branches: [main]
merge_group:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "greet"
lint:
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Runs a single command using the runners shell
- name: checkout
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
- name: use Node.js 22.x
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6
with:
node-version: '24.x'
- name: install bun
run: npm install -g bun
- name: bun init
run: bun i
- name: next lint
run: bun lint