Skip to content

chore(deps): bump the gha group across 1 directory with 2 updates #81

chore(deps): bump the gha group across 1 directory with 2 updates

chore(deps): bump the gha group across 1 directory with 2 updates #81

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/[email protected]
- name: Use Node version defined in manifest
uses: volta-cli/[email protected]
- 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