-
Notifications
You must be signed in to change notification settings - Fork 1
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
Bootcamp update 2023 #4
Conversation
These are all the updates I made for this year's bootcamp devops edition |
@@ -83,7 +83,8 @@ jobs: | |||
runs-on: ubuntu-latest | |||
|
|||
steps: | |||
+ - uses: actions/checkout@v3 |
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.
Remove + uses: actions/checkout@v3
bellow includes version 4
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.
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.
Sorry my silly comment then.
- runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
node-version: [14.x, 15.x, 16.x] |
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.
Maybe we can upgrade the Node versions to 16, 17 and 18
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.
Updated
|
||
* Update `ci.yml` | ||
|
||
```yml | ||
```diff |
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.
I don't like to use diff with yaml. Why? Because identation mess things up, instead we can use a comment. Maybe it's a good time to start a demo writing style guide.
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.
Updated
@@ -130,14 +129,14 @@ docker compose -f test-integration.yml up --force-recreate --exit-code-from buil | |||
|
|||
If we run this, we will find that our service `build-db-relationships` is unable to find the postgres database: | |||
|
|||
``` | |||
```output |
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.
Nice I didn't know about output
on markdown.
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.
I added output
because lint shows a warning when a code block (```) has no language.
The list of supported languages/syntaxes: https://github.com/jincheng9/markdown_supported_languages
d969e75
to
f362f02
Compare
f362f02
to
898defe
Compare
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.
Really good job!!!
No description provided.