-
Notifications
You must be signed in to change notification settings - Fork 64
66 lines (53 loc) · 1.35 KB
/
ci-cd.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
name: CI/CD Pipeline
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x]
steps:
# Checkout the code
- name: Checkout code
uses: actions/checkout@v2
# Setup Node.js
- name: Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
# Install dependencies for backend and frontend
- name: Install backend dependencies
run: |
cd backend
npm install
- name: Install frontend dependencies
run: |
npm install
# Build the Angular app
- name: Build Angular app
run: |
npm run build
# Run tests for frontend and backend
- name: Run backend tests
run: |
cd backend
npm test
- name: Run frontend tests
run: |
npm run test -- --watch=false
# Netlify deployment (optional)
- name: Deploy to Netlify
if: github.ref == 'refs/heads/main'
run: |
npm install -g netlify-cli
netlify deploy --prod --dir=dist/<your-angular-app> --auth=$NETLIFY_AUTH_TOKEN --site=$NETLIFY_SITE_ID
# Cache dependencies
cache:
paths:
- ~/.npm