2021-10-06 22:16:58 +02:00
|
|
|
name: PR -> Test & Coverage
|
2021-10-06 12:31:28 +02:00
|
|
|
|
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
2022-04-25 13:12:50 +02:00
|
|
|
if: github.repository == 'Unleash/unleash'
|
2021-10-06 12:31:28 +02:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
node-version: [14.x]
|
|
|
|
services:
|
|
|
|
# Label used to access the service container
|
|
|
|
postgres:
|
|
|
|
# Docker Hub image
|
|
|
|
image: postgres
|
|
|
|
# Provide the password for postgres
|
|
|
|
env:
|
|
|
|
POSTGRES_PASSWORD: postgres
|
|
|
|
# Set health checks to wait until postgres has started
|
|
|
|
ports:
|
|
|
|
- 5432:5432
|
|
|
|
options: >-
|
|
|
|
--health-cmd pg_isready
|
|
|
|
--health-interval 10s
|
|
|
|
--health-timeout 5s
|
|
|
|
--health-retries 5
|
|
|
|
steps:
|
2022-04-06 21:43:00 +02:00
|
|
|
- uses: actions/checkout@v3
|
2021-10-06 12:31:28 +02:00
|
|
|
- name: Use Node.js ${{ matrix.node-version }}
|
2022-04-06 21:43:29 +02:00
|
|
|
uses: actions/setup-node@v3
|
2021-10-06 12:31:28 +02:00
|
|
|
with:
|
|
|
|
node-version: ${{ matrix.node-version }}
|
|
|
|
- name: Tests on ${{ matrix.node-version }}
|
2022-02-02 22:18:50 +01:00
|
|
|
uses: ArtiomTr/jest-coverage-report-action@v2
|
2021-10-06 12:31:28 +02:00
|
|
|
with:
|
2022-02-02 22:18:50 +01:00
|
|
|
annotations: none
|
2021-10-06 12:31:28 +02:00
|
|
|
package-manager: yarn
|
|
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
2021-10-06 13:09:09 +02:00
|
|
|
test-script: yarn run test:coverage:jest
|
2021-10-06 12:31:28 +02:00
|
|
|
env:
|
|
|
|
CI: true
|
|
|
|
TEST_DATABASE_URL: postgres://postgres:postgres@localhost:5432/postgres
|
|
|
|
DATABASE_URL: postgres://postgres:postgres@localhost:5432/postgres
|
2021-10-06 12:41:50 +02:00
|
|
|
NODE_ENV: test
|
|
|
|
PORT: 4243
|