Skip to content
This repository has been archived by the owner on Aug 3, 2023. It is now read-only.

Commit

Permalink
Have service fail if Chromedriver process couldn't be started (#73)
Browse files Browse the repository at this point in the history
* have Chromedriver fail if process couldn't be started

* update node.js version in workflow

* install latest NPM

* make release type a choice input
  • Loading branch information
christian-bromann committed Mar 14, 2022
1 parent 209d5f9 commit 7cac7fe
Show file tree
Hide file tree
Showing 8 changed files with 21,138 additions and 3,639 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,15 @@ jobs:

strategy:
matrix:
node-version: [10.x, 12.x]
node-version: [14.x, 16.x]

steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm i -g npm
- run: npm ci
- run: npm run build --if-present
- run: npm test
Expand Down
9 changes: 7 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,14 @@ on:
workflow_dispatch:
inputs:
releaseType:
description: 'Release type - major, minor or patch'
description: "Release type - major, minor or patch"
required: true
default: 'patch'
type: choice
default: "patch"
options:
- patch
- minor
- major
distTag:
description: 'NPM tag (e.g. use "next" to release a test version)'
required: true
Expand Down
1 change: 1 addition & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
v16.13.0
Loading

0 comments on commit 7cac7fe

Please sign in to comment.