{{ message }}
This repository was archived by the owner on Feb 1, 2022. It is now read-only.
Conversation
Member
Author
Member
Author
|
From #75 (comment)
@jkrems I could always leave 10.x out of this PR, which would allow a passing CI on 12 and 13 (which would be a better position than no CI at all). We could then add 10.x in a later PR if deemed necessary. |
Add a workflow to run tests with GitHub Actions.
Collaborator
This file contains hidden or 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
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.

Add a workflow to run tests with GitHub Actions.
Based on the standard Node.js starter workflow with the following changes:
pull_requestevent so tests are run on pull requestsfail-fast: falseso that all versions of Node.js are tested (without this as soon as one job fails the rest are canceled)npm cireplaced withnpm installas this project doesn't have apackage-lock.jsonor shrinkwrap file committedTests seem very broken with
tap14 so I've downgraded totap12 where tests pass on Node.js 12.x and 13.x but there are still failures on 10.x (hence this being WIP). Any help with fixing those failures would be appreciated as I'm not that familiar withnode-inspect.