Skip to content

feat: remove version number from package.json #27

feat: remove version number from package.json

feat: remove version number from package.json #27

Workflow file for this run

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