Skip to content

Commit

Permalink
Add test-e2e step
Browse files Browse the repository at this point in the history
  • Loading branch information
jonfelixrico committed Apr 6, 2024
1 parent d066f0a commit 917f081
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/verify-server-reusable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,3 +60,24 @@ jobs:
run: yarn test:unit
working-directory: ./server
shell: bash

test-e2e:
needs:
- build
- lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: 20.x
cache: yarn
- name: Install dependencies
run: yarn install
working-directory: ./server
shell: bash
- name: Run Jest tests
run: yarn test:e2e
working-directory: ./server
shell: bash

0 comments on commit 917f081

Please sign in to comment.