Skip to content

Commit

Permalink
Update dependencies and fix import paths
Browse files Browse the repository at this point in the history
  • Loading branch information
etienne committed Feb 18, 2024
1 parent fac7e23 commit df95e9b
Show file tree
Hide file tree
Showing 10 changed files with 320 additions and 59 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,29 @@ on:
- main

jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Use Node.js
uses: actions/setup-node@v2
with:
node-version: "21"

- name: go to backend folder
run: cd backend

- name: Install dependencies
run: npm install

- name: Run pretests
run: npm run pretest

- name: Run tests
run: npm run test

# format:
# runs-on: ubuntu-latest
# steps:
Expand All @@ -17,6 +40,7 @@ jobs:
# run: terraform fmt

Deploy:
needs: test
# needs: format
runs-on: ubuntu-latest
steps:
Expand Down
Loading

0 comments on commit df95e9b

Please sign in to comment.