generated from hackforla/.github-hackforla-base-repo-template
-
-
Notifications
You must be signed in to change notification settings - Fork 21
55 lines (55 loc) · 1.44 KB
/
run-tests-v1.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
name: Run API and Frontend Tests
on:
pull_request:
branches: [main]
# This is also a reusable workflow that can be called from other workflows
workflow_call:
workflow_dispatch:
jobs:
test-api:
runs-on: ubuntu-latest
defaults:
run:
shell: bash
working-directory: ./backend
steps:
- uses: actions/checkout@main
with:
fetch-depth: 500
fetch-tags: true
- name: Install poetry
run: pipx install poetry
- name: Set up Python 3.12
uses: actions/setup-python@v5
with:
python-version: "3.12"
cache: "poetry"
- name: Install API Dependencies
run: poetry install --with test
- name: Run tests
run: poetry run pytest
test-frontend:
runs-on: ubuntu-latest
defaults:
run:
shell: bash
working-directory: ./frontend
steps:
- uses: actions/checkout@v4
- name: Use Node.js 20
uses: actions/setup-node@v4
with:
node-version: 20
cache: "npm"
cache-dependency-path: frontend/package-lock.json
- name: Run npm CI
run: npm ci
- name: Test frontend
run: npm run test -- --no-color --run
- name: Run E2E tests
uses: cypress-io/github-action@v5
with:
install: false
start: npm run dev
working-directory: ./frontend
wait-on: "http://localhost:4040/"