Fixed typo #103
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: CI | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 'lts/*' | |
- name: Install dependencies for NestJS | |
run: cd ./nestjs/conf && npm install | |
- name: Run NestJS tests | |
run: cd ./nestjs/conf && npm run test | |
- name: Install dependencies for VueJS | |
run: cd ./vue/conf && npm install | |
- name: Run VueJS tests | |
run: cd ./vue/conf && npm run test:unit | |
- name: Build the Docker Compose configuration | |
run: | | |
docker-compose -f docker-compose.yml build |