Skip to content

Commit

Permalink
Added github actions for backend tests
Browse files Browse the repository at this point in the history
  • Loading branch information
LarsEllefsen committed May 13, 2024
1 parent f44fcf7 commit e15fcc4
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/run-backend-tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: run-backend-tests
on: [push, pull_request]
jobs:
backend-tests:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: "20"

- name: Run install
uses: borales/actions-yarn@v4
with:
dir: backend
cmd: install

- name: Run unit tests
uses: borales/actions-yarn@v4
with:
dir: backend
cmd: test:unit

- name: Run integration tests
uses: borales/actions-yarn@v4
with:
dir: backend
cmd: test:integration

0 comments on commit e15fcc4

Please sign in to comment.