Your IP : 216.73.216.79


Current Path : /var/www/html/redd/public/tailadmin/node_modules/selfsigned/.github/workflows/
Upload File :
Current File : /var/www/html/redd/public/tailadmin/node_modules/selfsigned/.github/workflows/pr-tests.yml

name: PR Tests

on:
  pull_request:

jobs:
  test:
    runs-on: ubuntu-latest
    strategy:
      fail-fast: false
      matrix:
        node-version: [18.x, 20.x, 22.x, 24.x]
    steps:
      - name: Checkout repository
        uses: actions/checkout@v4

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

      - name: Install dependencies
        run: npm ci

      - name: Run tests
        run: npm test