modal: Add drop shadow. #583
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/CD Pipeline | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
services: | |
mongo: | |
image: mongo:latest | |
ports: | |
- 27017:27017 | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Set up Node.js | |
uses: actions/setup-node@v2 | |
with: | |
node-version: '20' | |
- name: Install backend dependencies | |
working-directory: ./backend | |
run: npm install | |
# - name: Run backend tests | |
# working-directory: ./backend | |
# run: npm test | |
- name: Install frontend dependencies | |
working-directory: ./frontend | |
run: npm install | |
# - name: Run frontend tests | |
# working-directory: ./frontend | |
# run: npm test | |
- name: Build frontend | |
working-directory: ./frontend | |
run: npm run build |