Skip to content

fix(deps): update dependency winston to v3.13.0 #1572

fix(deps): update dependency winston to v3.13.0

fix(deps): update dependency winston to v3.13.0 #1572

Workflow file for this run

name: Application
on:
push:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: 18.x
- name: Install
working-directory: app
run: |
npm install
- name: Lint/Test
working-directory: app
run: |
npm run lint
npm test
- name: Build
working-directory: app
run: |
npm run build
- name: Build container
run: docker-compose build