Merged in r2-3105-missing-label-form-export (pull request #7006) #757
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
# Copyright (c) 2014 - 2023 UNICEF. All rights reserved. | |
name: App | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
- 'release-*' | |
- develop | |
workflow_dispatch: | |
jobs: | |
server-test: | |
name: RSpec Test | |
runs-on: ubuntu-latest | |
services: | |
postgres: | |
image: postgres:15.6 | |
env: | |
POSTGRES_DB: primero_test | |
POSTGRES_USER: postgres | |
POSTGRES_PASSWORD: postgrespassword | |
ports: | |
- 5432:5432 | |
options: >- | |
--health-cmd pg_isready | |
--health-interval 10s | |
--health-timeout 5s | |
--health-retries 5 | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: ruby/setup-ruby@v1 | |
with: | |
bundler-cache: true | |
- name: Build/Run Solr | |
run: | | |
cd docker && ./build.sh solr | |
docker run -v solr_cores:/var/solr primeroims/solr:latest make-primero-core.sh primero-test | |
docker images | |
docker run -d -p 8983:8983 -v solr_cores:/var/solr --name=primero_solr_1 primeroims/solr:latest | |
docker ps | |
- name: Server tests | |
run: ./bin/run_server_tests.sh github-actions | |
shell: bash | |
# Running front-end mocha test in batches. Running on single process causes test | |
# to run out of resources. This causes a few test to randomly timeout. | |
client-test-1: | |
name: Client Test (Batch 1) | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: '20' | |
cache: 'npm' | |
cache-dependency-path: '**/package-lock.json' | |
- name: Run client tests | |
run: | | |
npm config set legacy-peer-deps true && npm ci | |
npm run test | |
client-test-components: | |
name: Client Test (Components) | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: '20' | |
cache: 'npm' | |
cache-dependency-path: '**/package-lock.json' | |
- name: Run client tests | |
run: | | |
npm config set legacy-peer-deps true && npm ci | |
npm run test:components -- --maxWorkers=2 | |
client-lint: | |
name: Client Linter | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: '20' | |
cache: 'npm' | |
cache-dependency-path: '**/package-lock.json' | |
- name: Run client linter | |
run: | | |
npm config set legacy-peer-deps true && npm ci | |
npm run lint |