fix: up logger (for removed logger stringify) and other deps #472
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: 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 |