Skip to content

Fixes the mistake in config of libms in docker compose files (#784) #26

Fixes the mistake in config of libms in docker compose files (#784)

Fixes the mistake in config of libms in docker compose files (#784) #26

Workflow file for this run

name: Library microservice
on:
push:
paths:
- 'servers/lib/**'
pull_request:
paths:
- 'servers/lib/**'
workflow_dispatch:
paths:
- 'servers/lib/**'
jobs:
test-lib-ms:
name: Test library microservice
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: 20
cache: "yarn"
cache-dependency-path: "**/yarn.lock"
# - name: Install pm2
# run: |
# npm install -g pm2
- name: Run the linting checks
run: |
cd servers/lib
yarn install
yarn syntax
- name: Build the lib microservice
run: |
cd servers/lib
yarn install
yarn build
- name: Run all tests
run: |
cd servers/lib
yarn install
yarn build
yarn test:all
env:
PORT: 4001
LOCAL_PATH: ${{ github.workspace }}/files
MODE: local
LOG_LEVEL: debug
APOLLO_PATH: /lib
# - name: Run http mode tests
# run: |
# cd servers/lib
# yarn install
# yarn build
# yarn test:http-github
# env:
# PORT: 4002
# LOCAL_PATH: ${{ github.workspace }}/files
# MODE: local
# LOG_LEVEL: debug
# APOLLO_PATH: /lib
- name: Upload test coverage to Codecov
uses: codecov/codecov-action@v3
with:
files: servers/lib/coverage/clover.xml
flags: lib-microservice-tests
publish-package:
if: |
github.event_name == 'push' &&
(startsWith(github.ref, 'refs/heads/feature/') || startsWith(github.ref, 'refs/heads/release-v'))
name: Publish to GitHub Packages
runs-on: ubuntu-latest
needs: test-lib-ms
permissions:
packages: write
contents: read
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: 20
cache: "yarn"
cache-dependency-path: "**/yarn.lock"
always-auth: true
registry-url: 'https://npm.pkg.github.com/'
- name: Publish npm package
run: |
cd servers/lib
yarn install
yarn build
yarn publish --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
get_version:
name: Get version
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Install jq
run: sudo apt-get install -y jq
- name: get version
id: get_version
run: |
version=`cat ./servers/lib/package.json | jq -r '.version'`
echo "version=$version" >> $GITHUB_OUTPUT
outputs:
version: ${{ steps.get_version.outputs.version }}
publish-docker-image:
name: Publish Docker image
needs: [ publish-package, get_version]
uses: ./.github/workflows/docker.yml
with:
registry: ghcr.io
image-name: into-cps-association/libms
version: ${{ needs.get_version.outputs.version }}
dockerfile: libms.dockerfile