-
Notifications
You must be signed in to change notification settings - Fork 2
126 lines (111 loc) · 3.17 KB
/
ci-nuxtjs.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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
name: Build - Nuxt App
on:
pull_request:
types: [assigned, opened, synchronize, reopened, "ready_for_review"]
paths:
- '.github/workflows/**'
- 'nuxt-app/**'
- 'webdriver-helpers/**'
- 'wdio.conf.js'
push:
branches:
- main
concurrency:
group: CI-Nuxt-${{ github.ref }}
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}
jobs:
build-nuxt-app-windows-node16:
name: Windows - Node 16
uses: ./.github/workflows/build.yml
with:
build-script: 'generate'
deploy: false
node-version: 16
os: 'windows-latest'
package-name: 'nuxt-app'
secrets: inherit
build-nuxt-app-windows-node18:
name: Windows - Node 18
uses: ./.github/workflows/build.yml
with:
build-script: 'generate'
deploy: false
node-version: 18
os: 'windows-latest'
package-name: 'nuxt-app'
secrets: inherit
build-nuxt-app-windows-node20:
name: Windows - Node 20
uses: ./.github/workflows/build.yml
with:
build-script: 'generate'
deploy: false
node-version: 20
os: 'windows-latest'
package-name: 'nuxt-app'
secrets: inherit
build-nuxt-app-ubuntu-node16:
name: Ubuntu - Node 16
uses: ./.github/workflows/build.yml
with:
build-script: 'generate'
deploy: false
node-version: 16
os: 'ubuntu-latest'
package-name: 'nuxt-app'
secrets: inherit
build-nuxt-app-ubuntu-node18:
name: Ubuntu - Node 18
uses: ./.github/workflows/build.yml
with:
build-script: 'generate'
deploy: false
node-version: 18
os: 'ubuntu-latest'
package-name: 'nuxt-app'
secrets: inherit
build-deploy-nuxt-app-ubuntu-node20:
name: Ubuntu - Node 20
uses: ./.github/workflows/build.yml
with:
build-script: 'generate'
deploy: true
node-version: 20
os: 'ubuntu-latest'
amplify-app-id: 'd36dan3bxjue8c'
package-name: 'nuxt-app'
package-dist-directory: './nuxt-app/dist'
bucket-name-preview: 'pie-aperture-preview'
bucket-name-main: 'pie-aperture'
secrets: inherit
browser-tests:
needs: 'build-deploy-nuxt-app-ubuntu-node20'
name: Run WebDriverIO Tests
runs-on: ubuntu-latest
steps:
# Checkout the Repo
- name: Checkout
uses: actions/checkout@v3
# Setup Node
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 20
cache: "yarn"
- name: Install Dependencies - Root
shell: bash
run: yarn
- name: Install Dependencies - Nuxt App
shell: bash
working-directory: ./nuxt-app
run: yarn
- name: Run Percy Tests
shell: bash
working-directory: ./nuxt-app
run: yarn test:visual
env:
BROWSERSTACK_USERNAME: ${{ secrets.BROWSERSTACK_USERNAME }}
BROWSERSTACK_ACCESS_KEY: ${{ secrets.BROWSERSTACK_ACCESS_KEY }}
NUXT_AMPLIFY_ID: d36dan3bxjue8c
PERCY_TOKEN_PIE_APERTURE_NUXT: ${{ secrets.PERCY_TOKEN_PIE_APERTURE_NUXT }}
PR_NUMBER: ${{ github.event.number }}