Skip to content

chore(deps): update node.js to v20.18.0 #348

chore(deps): update node.js to v20.18.0

chore(deps): update node.js to v20.18.0 #348

Workflow file for this run

name: Application
on:
push:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: 20.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