Skip to content

chore(deps): bump the dependencies group across 1 directory with 3 updates #48

chore(deps): bump the dependencies group across 1 directory with 3 updates

chore(deps): bump the dependencies group across 1 directory with 3 updates #48

Workflow file for this run

name: Node.js CI
on:
push:
branches:
- master
paths:
- workspaces/cli/**
pull_request:
paths:
- workspaces/cli/**
permissions:
contents: read
jobs:
test:
runs-on: ${{matrix.os}}
strategy:
matrix:
node-version: [24.x]
os: [ubuntu-latest, macos-latest, windows-latest]
fail-fast: false
steps:
- name: Harden Runner
uses: step-security/harden-runner@bf7454d06d71f1098171f2acdf0cd4708d7b5920 # v2.20.0
with:
egress-policy: audit # TODO: change to 'egress-policy: block' after couple of runs
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm install --ignore-scripts
- name: Build
run: npm run build
- name: Install Playwright browsers
if: matrix.os == 'ubuntu-latest'
run: npx playwright install --with-deps
- name: Run tests
run: npm run coverage -w workspaces/cli
- name: Run e2e tests
if: matrix.os == 'ubuntu-latest'
run: npm run test:e2e -w workspaces/cli
- name: Send coverage report to Codecov
uses: codecov/codecov-action@fb8b3582c8e4def4969c97caa2f19720cb33a72f # v7.0.0