Skip to content

feat(ci): add initial workflows #1

feat(ci): add initial workflows

feat(ci): add initial workflows #1

Workflow file for this run

name: Lint
on:
pull_request:
paths-ignore:
- "**.md"
- "**.jpg"
- "**.png"
- "**.gif"
- "**.svg"
- "CODEOWNERS"
permissions:
contents: read
# Abort prior jobs in the same workflow / PR
concurrency:
group: lint-${{ github.ref }}
cancel-in-progress: true
jobs:
test-unit:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- name: Install tools
uses: ./.github/actions/install-tools
- name: Run unit tests
run: uds run lint-all