Skip to content

feat(findpath): detect ChromeDriver path #64

feat(findpath): detect ChromeDriver path

feat(findpath): detect ChromeDriver path #64

Workflow file for this run

name: ci
on:
pull_request:
branches: [ master ]
jobs:
test:
runs-on: ubuntu-22.04
steps:
- name: Checkout repository
uses: actions/[email protected]
- name: Get Node version from Node manifest
run: echo "NODE_VER=$(curl -s https://nwjs.io/versions | jq -r ".versions[0].components.node")" >> $GITHUB_ENV
- name: Setup Node
uses: actions/[email protected]
with:
node-version: ${{ env.NODE_VER }}
cache: "npm"
- name: Enable corepack
run: corepack enable
- name: Install dependencies
run: npm ci
- name: Run test
run: npm test