Skip to content

Commit

Permalink
Fix: Install dependencies in lambda folder in CI/CD workflow
Browse files Browse the repository at this point in the history
Fix: Install dependencies in lambda folder in CI/CD workflow
  • Loading branch information
Avery-Littlemore authored Aug 22, 2024
1 parent c2f94d4 commit 94b3f84
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/nodejs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,11 @@ jobs:
with:
node-version: ${{ matrix.node-version }}

- name: Install dependencies
- name: Install dependencies in main folder
run: npm install

- name: Install dependencies in lambda folder
run: cd lambda && npm install

- name: Run tests
run: npm test

0 comments on commit 94b3f84

Please sign in to comment.