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
3 changes: 2 additions & 1 deletion src/controllers/recipes/getRecipe.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@ export async function getRecipe(req, res) {
"1/2 tsp paprika",
"1/4 tsp red pepper flakes",
"1/4 cup parsley",
"8 oz fettuccine pasta"
"8 oz fettuccine pasta",
"1 tbsp olive oil"
],
cookingTime: 30,
instructions: [
Expand Down
19 changes: 19 additions & 0 deletions test.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Test Project

on:
pull_request:
branches:
- main

jobs:
test:
runs-on: ubuntu-latest
container:
image: node:20
steps:
- uses: actions/checkout@v3
with:
node-version: 20
- run: npm ci
- run: npm test
- run: npm run build