Merge pull request #8 from davisshaver/rpc #91
This file contains 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: Linting | |
on: [push] | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v4 | |
- name: Build PHP | |
run: composer install --optimize-autoloader | |
- uses: oven-sh/setup-bun@v2 | |
with: | |
bun-version: latest | |
- name: Install Packages w/ Bun | |
run: bun install | |
- name: Lint PHP | |
run: bun run lint:php | |
- name: Lint JS | |
run: bun run lint:js | |
- name: Validate Types | |
run: bun run lint:ts | |
- name: Lint CSS | |
run: bun run lint:css | |
- name: Lint package.json | |
run: bun run lint:pkg-json | |
- name: Lint Markdown Docs | |
run: bun run lint:md:docs |