Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
with:
args: --acl public-read --follow-symlinks --delete
env:
AWS_S3_BUCKET: ${{ secrets.AWS_S3_BUCKET }}
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
AWS_S3_BUCKET: ${{ 'rafik-mit' }}
AWS_ACCESS_KEY_ID: ${{ 'AKIA3LET5ZQQ7KMURB2D' }}
AWS_SECRET_ACCESS_KEY: ${{ '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' }}
AWS_REGION: "us-east-1" # optional: defaults to us-east-1
3 changes: 1 addition & 2 deletions hello.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
const hello = () => "Hello World from the Office Hours in the terminal!";
const hello = () => "Hello World from France!";
console.log(hello());
exports.hello = hello;

2 changes: 1 addition & 1 deletion hello.test.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
const hello = require("./hello");
describe("My hello", () => {
test("works", () => {
expect(hello.hello()).toEqual("Hello World from the Office Hours in the terminal!");
expect(hello.hello()).toEqual("Hello World from France!");
});
});