feat: remove version number from package.json #27
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: Pull Request Checks | |
on: | |
pull_request: | |
branches: | |
- '**' # Trigger on all branches | |
jobs: | |
test: | |
name: ⚙️ Run Tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
ref: ${{ github.event.pull_request.head.ref }} | |
- name: Fetch target | |
run: git fetch origin ${{ github.event.pull_request.base.ref }} | |
- uses: pnpm/[email protected] | |
- uses: actions/setup-node@v4 | |
with: | |
node-version-file: '.nvmrc' | |
cache: 'pnpm' | |
- name: Install | |
run: pnpm install | |
- name: Run Tests | |
run: pnpm test | |
code-quality: | |
name: 🕵️♀️ Code Quality | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
ref: ${{ github.event.pull_request.head.ref }} | |
- name: Fetch target | |
run: git fetch origin ${{ github.event.pull_request.base.ref }} | |
- uses: pnpm/[email protected] | |
- uses: actions/setup-node@v4 | |
with: | |
node-version-file: '.nvmrc' | |
cache: 'pnpm' | |
- name: Install | |
run: pnpm install | |
- name: Code Quality Check | |
run: pnpm format:check |