-
Notifications
You must be signed in to change notification settings - Fork 7
118 lines (99 loc) · 3.3 KB
/
validate.yml
File metadata and controls
118 lines (99 loc) · 3.3 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
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
name: deploy
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
on:
push:
branches:
- 'main'
pull_request: {}
jobs:
setup:
name: 🔧 Setup
timeout-minutes: 10
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- name: ⎔ Setup node
uses: actions/setup-node@v4
with:
node-version: 24
- name: ▶️ Add repo
run: |
npx --yes epicshop@latest add ${{ github.event.repository.name }}#${{ github.head_ref || github.ref_name }} ./workshop
env:
# Kept getting npm ECOMPROMISED errors on windows. This fixed it.
npm_config_cache: ${{ runner.temp }}/npm-cache
- name: ʦ TypeScript
run: npm run typecheck
working-directory: ./workshop
- name: ⬣ ESLint
# run: npm run lint
run: echo "Linting is disabled"
working-directory: ./workshop
tests:
name: 🧪 Test
timeout-minutes: 10
runs-on: ubuntu-latest
# Use continue-on-error to ensure this job doesn't fail the workflow
continue-on-error: true
steps:
- name: ⬇️ Checkout repo
uses: actions/checkout@v4
- name: ⎔ Setup node
uses: actions/setup-node@v4
with:
node-version: 24
- name: 📦 Install dependencies
run: npm ci
- name: 📦 Cache Playwright Browsers
uses: actions/cache@v4
id: playwright-cache
with:
path: ~/.cache/ms-playwright
key:
${{ runner.os }}-playwright-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-playwright-
- name: 📥 Install Playwright Browsers
if: steps.playwright-cache.outputs.cache-hit != 'true'
run: npx playwright install chromium --with-deps
- name: 🚀 Start app server
run: |
npm run dev --silent --prefix ./epicshop/epic-me -- --clearScreen=false --logLevel=error --strictPort &
echo $! > /tmp/app-server.pid
# Wait for server to be ready
timeout 30 bash -c 'until curl -f http://localhost:7787/healthcheck >/dev/null 2>&1; do sleep 1; done'
- name: 🧪 Run tests
id: run_tests
run: node ./epicshop/test.js ..s
- name: 🛑 Stop app server
if: always()
run: |
if [ -f /tmp/app-server.pid ]; then
kill $(cat /tmp/app-server.pid) 2>/dev/null || true
rm -f /tmp/app-server.pid
fi
deploy:
name: 🚀 Deploy
timeout-minutes: 10
runs-on: ubuntu-latest
# only deploy main branch on pushes on non-forks
if:
${{ github.ref == 'refs/heads/main' && github.event_name == 'push' &&
github.repository_owner == 'epicweb-dev' }}
steps:
- name: ⬇️ Checkout repo
uses: actions/checkout@v4
- name: 🎈 Setup Fly
uses: superfly/flyctl-actions/setup-flyctl@1.5
- name: 🚀 Deploy
run:
flyctl deploy --remote-only --build-arg
EPICSHOP_GITHUB_REPO=https://github.com/${{ github.repository }}
--build-arg EPICSHOP_COMMIT_SHA=${{ github.sha }}
working-directory: ./epicshop
env:
FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }}