Skip to content

Commit

Permalink
Add github action
Browse files Browse the repository at this point in the history
  • Loading branch information
daisykucharski committed Oct 16, 2023
1 parent 6682779 commit 3016228
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,23 @@ jobs:
- run: yarn install --immutable
- name: Run Jest Tests
run: yarn packages/api-v2 test
run-api-e2e-tests:
runs-on: ubuntu-latest
name: Backend E2E Tests
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: "16"
- name: Start up test db
run: yarn test:db:up
- run: yarn install --immutable
- name: Run E2E tests
run: yarn test:e2e
- name: Tear down test db
run: yarn test:db:down
build-frontend-image:
runs-on: ubuntu-latest
steps:
Expand Down

0 comments on commit 3016228

Please sign in to comment.