Test Backend #2
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
name: Testing Backend 🧪 | |
run-name: Test Backend | |
on: [push] | |
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: Run tests | |
run: npm test | |