-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update GitHub Actions workflow for testing backend
- Loading branch information
1 parent
6564d6d
commit 3c36d1d
Showing
1 changed file
with
6 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,17 @@ | ||
name: Testing Backend 🧪 | ||
run-name: Test Backend | ||
on: [push] | ||
name: Backend setup and test 🧪 | ||
run-name: Backend setup and test | ||
on: [push, pull_request] | ||
jobs: | ||
Explore-GitHub-Actions: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout Repository | ||
uses: actions/checkout@v2 | ||
- run: docker pull python:3.9-slim | ||
- name: Install dependencies | ||
run: npm install | ||
- name: Pull images | ||
run: npm run pull-images | ||
- name: Run tests | ||
run: npm test | ||
|
||
|