diff --git a/src/controllers/recipes/getRecipe.ts b/src/controllers/recipes/getRecipe.ts index 2238414..526a3c9 100755 --- a/src/controllers/recipes/getRecipe.ts +++ b/src/controllers/recipes/getRecipe.ts @@ -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: [ diff --git a/test.yaml b/test.yaml new file mode 100644 index 0000000..94fc4dd --- /dev/null +++ b/test.yaml @@ -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 \ No newline at end of file