Skip to content

Update Node.js to v20 #985

Update Node.js to v20

Update Node.js to v20 #985

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: 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