Skip to content

fix: SCS update logger to enable loggint to ES and increased timeout … #685

fix: SCS update logger to enable loggint to ES and increased timeout …

fix: SCS update logger to enable loggint to ES and increased timeout … #685

Workflow file for this run

name: Build
on: push
jobs:
build:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
- name: Install Dependencies
run: npm ci
- name: Build
run: npm run build
test:
runs-on: ubuntu-22.04
needs: build
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
- uses: restorecommerce/setup-system-action@v1
- name: Install Dependencies
run: npm ci
- name: Test
run: npm run test && npm run lcov-report
- uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
image:
runs-on: ubuntu-22.04
needs: build
steps:
- uses: actions/checkout@v4
- uses: docker/setup-buildx-action@v3
- name: Set variables
id: vars
run: |
echo ::set-output name=version_tag::$(echo ${GITHUB_REF#refs/*/})
echo ::set-output name=repo_name::$(echo ${GITHUB_REPOSITORY#*/*})
- uses: docker/build-push-action@v5
with:
platforms: linux/amd64
build-args: |
APP_HOME=/home/node/${{ steps.vars.outputs.repo_name }}
cache-from: |
${{ github.repository }}:latest