-
Notifications
You must be signed in to change notification settings - Fork 0
86 lines (66 loc) · 1.91 KB
/
Copy pathci.yml
File metadata and controls
86 lines (66 loc) · 1.91 KB
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
name: CI
on: [push, pull_request]
permissions:
contents: read
statuses: write
jobs:
test:
runs-on: ubuntu-latest
name: Test
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Setup Node
uses: actions/setup-node@v6
with:
node-version-file: '.nvmrc'
- name: Install dependencies
run: npm install
- name: Test
run: npm test
visual-regression:
if: github.event_name == 'pull_request' || github.ref == 'refs/heads/master'
runs-on: ubuntu-latest
name: Argos
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Setup Node
uses: actions/setup-node@v6
with:
node-version-file: '.nvmrc'
- name: Install dependencies
run: npm install
- name: Build app
run: npm run build
- name: Install Playwright browser
run: npx playwright install chromium
- name: Argos
run: npm run test:vrt
env:
GITHUB_TOKEN: ${{ github.token }}
deploy-production:
if: github.event_name == 'push' && github.ref == 'refs/heads/master'
runs-on: ubuntu-latest
name: Deploy production
needs: [test, visual-regression]
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Setup Node
uses: actions/setup-node@v6
with:
node-version-file: '.nvmrc'
- name: Install dependencies
run: npm install
- name: Build app
run: npm run build
- name: Deploy to Netlify
run: |
deploy_message="$(git log -1 --pretty=%s)"
npx --yes netlify-cli deploy --prod --dir=dist --site \
"$NETLIFY_SITE_ID" --auth "$NETLIFY_AUTH_TOKEN" \
--message "$deploy_message"
env:
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }}