-
-
Notifications
You must be signed in to change notification settings - Fork 19
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Migrate away from Travis ci #23
Closed
Closed
Changes from 21 commits
Commits
Show all changes
23 commits
Select commit
Hold shift + click to select a range
56c506b
setup ci
veritem 2355073
Create dependabot.yml
veritem 1593cdb
init
veritem fedbf60
init
veritem 05133d6
remove travis ci
veritem 1abc271
update
veritem 4a64953
setup compose
veritem d019f64
Merge branch 'master' into master
veritem d252b7f
setup compose
veritem fd5c5bc
Merge branch 'master' of github.com:makuzaverite/fastify-kafka
veritem 58a25cb
fix action name
veritem 98d85c1
fix action name
veritem 0aeb7fb
fix action name
veritem cc449d4
fix action name
veritem 3f9a723
fix action name
veritem 52a652c
fix action name
veritem a4b199a
fix action name
veritem f934f2f
fix action name
veritem e700c6d
fix action name
veritem 522d8cc
fix action name
veritem 2dfbf25
fix action name
veritem 754079e
setup
veritem 9437c89
fix ci
veritem File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 |
---|---|---|
@@ -1,4 +1,3 @@ | ||
|
||
name: CI | ||
|
||
on: | ||
|
@@ -13,21 +12,19 @@ jobs: | |
strategy: | ||
matrix: | ||
node-version: [10.x, 12.x, 14.x] | ||
services: | ||
kafka: | ||
image: confluentinc/cp-kafka | ||
ports: | ||
- 9092:9092 | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Use Node.js ${{ matrix.node-version }} | ||
uses: actions/[email protected] | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
- name: Install Dependencies | ||
run: npm install --ignore-scripts | ||
- name: Test | ||
run: npm test | ||
# - uses: actions/checkout@v2 | ||
# - name: Build the Kafka | ||
- name: Use Node.js ${{ matrix.node-version }} | ||
uses: actions/[email protected] | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
- name: Install Dependencies | ||
run: npm install --ignore-scripts | ||
- name: Build container | ||
run: docker-compose up -d | ||
- name: Test | ||
run: npm test | ||
|
||
|
||
automerge: | ||
|
This file was deleted.
Oops, something went wrong.
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
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
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
checkout needs to be left in or else the workflow won't be able to access the repository and the contents.
This is why the CI workflow is currently failing for this PR, because it can't find the docker-compose file in the first place. 😁