Release v1.0.0-alpha.51 #1675
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: API - Pull Request | |
on: | |
pull_request: | |
branches: | |
- daily | |
- release/alpha | |
- master | |
paths: | |
- ".github/workflows/**" | |
- "packages/@liexp/**/src/**" | |
- "services/api/**" | |
env: | |
API_IMAGE_NAME: liexp-api | |
jobs: | |
install: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: ./.github/actions/install-deps | |
with: | |
hash: ${{ hashFiles('**/yarn.lock') }} | |
build-packages: | |
runs-on: ubuntu-latest | |
needs: [install] | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: ./.github/actions/install-deps | |
with: | |
hash: ${{ hashFiles('**/yarn.lock') }} | |
- uses: ./.github/actions/build-packages | |
with: | |
hash: ${{ github.sha }} | |
lint: | |
runs-on: ubuntu-latest | |
needs: [install, build-packages] | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: ./.github/actions/install-deps | |
with: | |
hash: ${{ hashFiles('**/yarn.lock') }} | |
- uses: ./.github/actions/build-packages | |
with: | |
hash: ${{ github.sha }} | |
- name: Lint code | |
run: yarn api lint | |
build: | |
needs: [install, build-packages, lint] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: ./.github/actions/install-deps | |
with: | |
hash: ${{ hashFiles('**/yarn.lock') }} | |
- uses: ./.github/actions/build-api | |
with: | |
hash: ${{ github.sha }} | |
test: | |
runs-on: ubuntu-latest | |
needs: [install, build-packages, lint, build] | |
services: | |
pg-db-test: | |
image: postgres:14 | |
env: | |
POSTGRES_USER: liexp | |
POSTGRES_PASSWORD: liexp-password | |
POSTGRES_DB: liexp-test | |
options: >- | |
--health-cmd pg_isready | |
--health-interval 10s | |
--health-timeout 5s | |
--health-retries 5 | |
ports: | |
- 9432:5432 | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: ./.github/actions/install-deps | |
with: | |
hash: ${{ hashFiles('**/yarn.lock') }} | |
- uses: ./.github/actions/build-packages | |
with: | |
hash: ${{ github.sha }} | |
- uses: ./.github/actions/build-api | |
with: | |
hash: ${{ github.sha }} | |
- name: Run migrations | |
env: | |
DOTENV_CONFIG_PATH: .env.test | |
run: yarn api migration:run | |
- name: Upsert NLP Entities | |
env: | |
DOTENV_CONFIG_PATH: .env.test | |
run: yarn api upsert-nlp-entities | |
- name: Run tests | |
env: | |
DEBUG: "-@liexp*" | |
run: | | |
yarn api test | |
yarn api test:e2e | |
docker_build: | |
if: ${{ github.base_ref == 'release/alpha' }} | |
needs: [install, build-packages, lint] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: ./.github/actions/install-deps | |
with: | |
hash: ${{ hashFiles('**/yarn.lock') }} | |
- name: Log in to registry | |
uses: docker/login-action@v2 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v2 | |
- name: Build API image | |
uses: docker/build-push-action@v4 | |
with: | |
context: . | |
file: ./api.Dockerfile | |
push: false | |
tags: ${{ env.API_IMAGE_NAME }} |