bbc/cloudflare-queue-consumer

View on GitHub
.github/workflows/test.yml

Summary

Maintainability
Test Coverage
name: Run Tests
on:
  pull_request:
    branches:
      - 'main'
  push:
    branches:
      - main
permissions:
  contents: read

jobs:
  build:
    runs-on: ubuntu-latest
    strategy:
      matrix:
        node-version: [22.x]

    steps:
      - uses: actions/checkout@v4

      - uses: pnpm/action-setup@v3
        with:
          version: 9

      - name: Use Node.js ${{ matrix.node-version }}
        uses: actions/setup-node@v4
        with:
          node-version: ${{ matrix.node-version }}
          cache: 'pnpm'

      - name: Install Node Modules
        run: pnpm install --frozen-lockfile

      - name: Run Tests and Linting
        run: pnpm run test

      - uses: actions/upload-artifact@v4
        with:
          name: test-reports-${{ matrix.node-version }}
          path: test/reports/