2022-05-20 12:09:16 +02:00
|
|
|
name: Coverage
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
paths-ignore:
|
|
|
|
- website/**
|
2022-08-26 09:25:31 +02:00
|
|
|
- frontend/**
|
2022-05-20 12:09:16 +02:00
|
|
|
- coverage/**
|
|
|
|
|
|
|
|
jobs:
|
2022-05-20 12:19:02 +02:00
|
|
|
coverage:
|
2022-05-20 12:09:16 +02:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
strategy:
|
|
|
|
matrix:
|
2023-04-18 10:55:55 +02:00
|
|
|
node-version: [18.x]
|
2022-05-20 12:09:16 +02:00
|
|
|
services:
|
|
|
|
# Label used to access the service container
|
|
|
|
postgres:
|
|
|
|
# Docker Hub image
|
|
|
|
image: postgres
|
|
|
|
# Provide the password for postgres
|
|
|
|
env:
|
|
|
|
POSTGRES_PASSWORD: postgres
|
2023-10-24 12:33:17 +02:00
|
|
|
POSTGRES_INITDB_ARGS: "--no-sync"
|
2022-05-20 12:09:16 +02:00
|
|
|
# Set health checks to wait until postgres has started
|
|
|
|
ports:
|
|
|
|
- 5432:5432
|
|
|
|
options: >-
|
2022-06-09 14:26:35 +02:00
|
|
|
--health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5
|
|
|
|
|
2022-07-01 13:51:26 +02:00
|
|
|
|
2022-05-20 12:09:16 +02:00
|
|
|
steps:
|
2023-10-05 10:19:57 +02:00
|
|
|
- uses: actions/checkout@v4
|
2022-06-09 14:26:35 +02:00
|
|
|
- name: Use Node.js ${{ matrix.node-version }}
|
2024-01-17 08:56:41 +01:00
|
|
|
uses: actions/setup-node@v4
|
2022-06-09 14:26:35 +02:00
|
|
|
with:
|
2023-10-26 09:09:03 +02:00
|
|
|
node-version: 18.x
|
2022-06-09 14:26:35 +02:00
|
|
|
cache: 'yarn'
|
|
|
|
- run: yarn
|
2023-10-10 15:35:11 +02:00
|
|
|
- run: yarn build:frontend:if-needed
|
2022-06-09 14:26:35 +02:00
|
|
|
- run: yarn run test:coverage
|
|
|
|
env:
|
|
|
|
CI: true
|
|
|
|
TEST_DATABASE_URL: postgres://postgres:postgres@localhost:5432/postgres
|
|
|
|
DATABASE_URL: postgres://postgres:postgres@localhost:5432/postgres
|
|
|
|
#- run: |
|
|
|
|
## git config --global user.name "${GH_NAME}"
|
|
|
|
# git config --global user.email "${GH_EMAIL}"
|
|
|
|
# GIT_USER="${GH_NAME}"
|
|
|
|
# echo "machine github.com login ${GH_NAME} password ${GITHUB_TOKEN}" > ~/.netrc
|
|
|
|
#
|
|
|
|
# git add coverage
|
|
|
|
# git diff-index --quiet HEAD || git commit -m 'chore: update coverage reports'
|
|
|
|
# git push origin main
|
|
|
|
# env:
|
|
|
|
# GH_NAME: 'ivarconr'
|
|
|
|
# GH_EMAIL: 'ivarconr@gmail.com'
|
|
|
|
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
- name: Coveralls
|
|
|
|
uses: coverallsapp/github-action@master
|
|
|
|
with:
|
|
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|