-
Notifications
You must be signed in to change notification settings - Fork 6
70 lines (57 loc) · 1.63 KB
/
build.yml
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
67
68
69
70
name: Build, Test & Trigger Deploy
on:
push:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
# define node version
strategy:
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@v3
# setting up node
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
# install
- name: Install Dependencies
if: steps.cache-nodemodules.outputs.cache-hit != 'true'
run: |
npm ci
# install playwright
- name: Install Playwright with Chrome
run: |
npx playwright install --with-deps
# build
- name: Build
run: |
npm run build:prod
# unit tests (single run - headless chrome)
- name: Unit Tests
run: |
npm run test:ci
# Run E2E Tests
- name: PlayWright Test
run: |
npm run e2e:playwright:ci
- name: WebdriverIO Test
run: |
npm run e2e:wdio:ci
deploy:
# only deploy when PR has been merged to main branch & build job was successfully finished
if: github.event.pull_request.merged == true
needs: build
runs-on: ubuntu-latest
steps:
# Deploy recent build and push it to branch 'gh-pages'
# this will trigger the action 'pages build & deployment' to host the recent build
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./dist/angular-redux-shop
publish_branch: gh-pages