Skip to content

Optimizing build clean #432

Optimizing build clean

Optimizing build clean #432

name: Lint Code Base
permissions: read-all
on:
pull_request:
branches: [master]
paths:
- '**.js*'
- '**.ts*'
- Dockerfile
- package*.json
- bun.lock
- .github/workflows/ci-check-linters.yml
push:
branches: [master]
paths:
- '**.js*'
- '**.ts*'
- Dockerfile
- package*.json
- bun.lock
- .github/workflows/ci-check-linters.yml
concurrency:
# Ensures that only one workflow task will run at a time. Previous builds, if
# already in process, will get cancelled. Only the latest commit will be allowed
# to run, cancelling any workflows in between
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
linter:
runs-on: ubuntu-latest
steps:
- name: Checkout Code Repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Bun
uses: oven-sh/setup-bun@v2
with:
bun-version: latest
- name: Install dependencies
run: bun install --frozen-lockfile
- name: Run linter
run: bun lint