Skip to content

🚸 add no-wrap for badge #15

🚸 add no-wrap for badge

🚸 add no-wrap for badge #15

Workflow file for this run

name: Execute API tests with .env.test
on:
push:
branches:
- main
- test
pull_request:
branches:
- main
- test
jobs:
test-api:
runs-on: ubuntu-latest
steps:
- name: Checkout du code
uses: actions/checkout@v2
- name: Go to API folder
run: cd server
- name: Use test env sample
run: cp .env.test .env
- name: Install dependancies
run: npm install
- name: Execute tests
run: npm run test