ci: add .github/workflow specs to workspace root #6
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: monorepo/lint | |
on: | |
# Runs on pull request events: | |
pull_request: {} | |
jobs: | |
lint: | |
strategy: | |
matrix: | |
os: [ ubuntu-latest ] | |
runs-on: ${{ matrix.os }} | |
name: Lint Check | |
steps: | |
- name: "Checkout Repository" | |
uses: actions/checkout@v4 | |
- name: "Common Setup" | |
uses: ./.github/actions/common-setup | |
- name: Run Lint Check | |
run: bun run lint:all |