-
Notifications
You must be signed in to change notification settings - Fork 173
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Create GitHub Actions workflow for CI
Drop node 5 for node 6, as the former appears to not run at all on GitHub Actions Works towards #250
- Loading branch information
Showing
1 changed file
with
19 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
name: Continuous Integration | ||
on: | ||
push: | ||
pull_request: | ||
types: [opened, reopened] | ||
|
||
jobs: | ||
test: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
version: [4, 6] | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
LoneRifle
Author
Collaborator
|
||
steps: | ||
- uses: actions/checkout@HEAD | ||
- uses: actions/setup-node@HEAD | ||
with: | ||
node-version: ${{ matrix.version }} | ||
- run: npm install | ||
- run: npm test |
Are you saying that you don't want to have the tests run on the latest Node versions? I understand wanting to support Node v4 for certain clients (though they should really upgrade since their version isn't supported anymore), but wouldn't we want to know if there is a compatibility issue with newer version that are still supported?