Update dependency @types/node to v18.17.1 #1001
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: 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 |