Skip to content

Bump pnpm/action-setup from 2 to 4 #263

Bump pnpm/action-setup from 2 to 4

Bump pnpm/action-setup from 2 to 4 #263

Workflow file for this run

name: Test multiple-cucumber-html-reporter
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18, 20]
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
with:
version: latest
- name: Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: "pnpm"
- name: Install dependencies
run: pnpm i
- name: Run Unit Tests and generate coverage report
run: pnpm unit.test.coverage