Enhance labels for Pôle Emploi paiements #2729
Workflow file for this run
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: End to end testing | |
on: | |
push: | |
branches: | |
- "**" | |
- "!master" | |
jobs: | |
quality-control: | |
runs-on: ubuntu-20.04 | |
env: | |
BACK_HOST: http://localhost:3001 | |
FRONT_HOST: http://localhost:3000 | |
OAUTH_HOST: https://app-test.moncomptepro.beta.gouv.fr | |
ALLOWED_ORIGINS: http://localhost:3000 | |
PG_USER: back | |
PG_PASSWORD: back | |
PG_HOST: localhost | |
PG_DATABASE: datapass | |
SECRET_KEY_BASE: croute | |
RAILS_ENV: production | |
DATAPASS_OAUTH_CLIENT_ID: ${{ secrets.OAUTH_CLIENT_ID }} | |
DATAPASS_OAUTH_CLIENT_SECRET: ${{ secrets.OAUTH_CLIENT_SECRET }} | |
INSEE_HOST: https://api.insee.fr | |
INSEE_CONSUMER_KEY: ${{ secrets.INSEE_CONSUMER_KEY }} | |
INSEE_CONSUMER_SECRET: ${{ secrets.INSEE_CONSUMER_SECRET }} | |
DO_NOT_VALIDATE_MAIL: "True" | |
FORCE_COOKIES_SAME_SITE_PROTECTION: "True" | |
services: | |
redis: | |
image: redis | |
ports: | |
- 6379:6379 | |
postgres: | |
image: postgres:12.12 | |
env: | |
POSTGRES_USER: ${{ env.PG_USER }} | |
POSTGRES_PASSWORD: ${{ env.PG_PASSWORD }} | |
POSTGRES_DB: ${{ env.PG_DATABASE }} | |
ports: | |
- 5432:5432 | |
defaults: | |
run: | |
working-directory: frontend | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Use Node.js 16.x | |
uses: actions/setup-node@v3 | |
with: | |
node-version: "16.x" | |
- name: Setup Ruby and install gems | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: 3.2.0 | |
bundler-cache: true | |
- name: Install postgres client | |
run: sudo apt-get install libpq-dev | |
- name: Link libffi7 to libffi6 since the version 6 is not available anymore in Ubuntu 20.04 | |
run: sudo ln -s /usr/lib/x86_64-linux-gnu/libffi.so.7 /usr/lib/x86_64-linux-gnu/libffi.so.6 | |
- name: Cache Gems | |
uses: actions/cache@v3 | |
with: | |
path: backend/vendor/bundle | |
key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }} | |
restore-keys: | | |
${{ runner.os }}-gems- | |
- name: Install backend vendors | |
run: | | |
gem install bundler | |
bundle config path vendor/bundle | |
bundler install --jobs 4 --retry 3 | |
working-directory: backend | |
- name: Cache node modules | |
uses: actions/cache@v3 | |
env: | |
cache-name: cache-node-modules | |
with: | |
# npm cache files are stored in `~/.npm` on Linux/macOS | |
path: ~/.npm | |
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }} | |
restore-keys: | | |
${{ runner.os }}-build-${{ env.cache-name }}- | |
${{ runner.os }}-build- | |
${{ runner.os }}- | |
- run: npm install | |
- name: Migrate database | |
run: bin/rails db:migrate | |
working-directory: backend | |
- name: Seed database | |
run: bin/rails db:seed | |
working-directory: backend | |
- name: Install Cypress | |
run: npm install cypress@12 | |
working-directory: . | |
- name: Run backend application | |
run: bundle exec puma -C ./config/puma.rb & | |
working-directory: backend | |
env: | |
PORT: 3001 | |
- name: Run frontend application | |
run: npm run dev & | |
- name: Wait for backend application to run | |
run: npx wait-on tcp:3001 -t 30000 | |
- name: Wait for frontend application to run | |
run: npx wait-on tcp:3000 -t 30000 | |
- name: Cypress run | |
uses: cypress-io/github-action@v5 | |
with: | |
browser: chrome | |
install: false | |
working-directory: . | |
- uses: actions/upload-artifact@v3 | |
if: failure() | |
with: | |
name: cypress-screenshots | |
path: cypress/screenshots | |
- uses: actions/upload-artifact@v3 | |
if: failure() | |
with: | |
name: cypress-videos | |
path: cypress/videos |