Create RefreshSession High Order Component #653
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: Tests | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
build_and_test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Run the containers | |
run: docker-compose -f ./docker/docker-compose.test.yml up -d phpreport-app api test_db | |
- name: Wait | |
run: sleep 15s | |
- name: Run tests | |
run: docker exec -t phpreport-app ./vendor/bin/phpunit --testdox tests --verbose | |
- name: Run flake8 check | |
run: docker exec -t phpreport-api tox -e flake8 | |
- name: Run black check | |
run: docker exec -t phpreport-api tox -e black | |
- name: Run API tests | |
run: docker exec -t phpreport-api tox -e pytest | |
test_frontend: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: ./frontend | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '20.x' | |
- name: Install deps | |
run: npm install | |
- name: Run frontend tests | |
run: npm run test |