Skip to content

Bugfix: Header version causing errors #52

Bugfix: Header version causing errors

Bugfix: Header version causing errors #52

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

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

View workflow run for this annotation

GitHub Actions / Code Quality

Invalid workflow file

The workflow is not valid. .github/workflows/code-quality.yml (Line: 12, Col: 23): Unexpected value 'latest' .github/workflows/code-quality.yml (Line: 33, Col: 23): Unexpected value '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
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