fix(validation): temporarily bypass Luhn #443
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |