Skip to content

Merge branch 'next-minor-version' into next-patch-version #556

Merge branch 'next-minor-version' into next-patch-version

Merge branch 'next-minor-version' into next-patch-version #556

Workflow file for this run

name: Lint and Test Code
on:
pull_request:
branches-ignore: [gh-pages]
push:
branches-ignore: [gh-pages]
jobs:
lint_and_test_code:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: pnpm/action-setup@v6
with:
run_install: false
- name: Setup Node
uses: actions/setup-node@v6
with:
node-version: "24"
cache: "pnpm"
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Lint
run: pnpm lint || (echo && echo "Run 'pnpm format' to fix." && exit 1)
- name: Test
run: pnpm test
- name: Upload results to Codecov
uses: codecov/codecov-action@v6
with:
token: ${{ secrets.CODECOV_TOKEN }}