Skip to content

chore(deps): bump the npm group with 3 updates #705

chore(deps): bump the npm group with 3 updates

chore(deps): bump the npm group with 3 updates #705

Workflow file for this run

name: e2e
on:
pull_request:
branches:
- main
concurrency:
group: ${{ github.ref }}
cancel-in-progress: true
jobs:
e2e:
strategy:
matrix:
os:
- macos-14
- ubuntu-22.04
- windows-2022
fail-fast: false
runs-on: ${{ matrix.os }}
steps:
- name: Checkout repository
uses: actions/checkout@v4.1.7
- name: Get Node version from NW.js manifest
uses: volta-cli/action@v4.1.1
- name: Node.js version
run: node -v
- name: npm version
run: npm -v
- name: Install dependencies
run: npm ci
- name: Check for linting errors
run: npm run lint
- name: Run tests
run: npm run test