Skip to content

DRAFT: Parity

DRAFT: Parity #38

Workflow file for this run

name: Code Quality
on:
pull_request:
jobs:
format:
name: Format
runs-on: ubuntu-22.04
strategy:
matrix:
node-version: latest
steps:
- uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: 10
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'pnpm'
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Run Formatter
run: pnpm format:check
test:
name: Format

Check failure on line 29 in .github/workflows/code-quality.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/code-quality.yml

Invalid workflow file

You have an error in your yaml syntax on line 29
runs-on: ubuntu-22.04
strategy:
matrix:
node-version: latest
steps:
- uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: 10
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'pnpm'
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Run tests
run: pnpm test
build:
name: Format
runs-on: ubuntu-22.04
strategy:
matrix:
node-version: latest
steps:
- uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: 10
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'pnpm'
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Build project
run: pnpm build