chore(deps-dev): bump nw from 0.91.0 to 0.92.0 in the npm group #43
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: ci | |
on: | |
pull_request: | |
branches: | |
- main | |
concurrency: | |
group: ${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
gyp: | |
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: Run selenium test suite | |
run: npm t |