-
Notifications
You must be signed in to change notification settings - Fork 12
40 lines (40 loc) · 1.05 KB
/
deploy.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
name: Test & Deploy
on:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: lts/*
- run: npm install
- run: npm run lint
# The deploy happens on DigitalOcean, this just checks that it eventually
# succeeds.
verify-deploy:
name: Verify Deploy
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }}
needs: test
runs-on: ubuntu-20.04
steps:
- run: |
for i in {1..10}; do
DEPLOYED_VERSION="$(curl -s https://build.whatwg.org/version)"
if [[ "$DEPLOYED_VERSION" = "$GITHUB_SHA" ]]; then
echo "$GITHUB_SHA deploy verified!"
exit 0
fi
echo "$GITHUB_SHA not yet deployed, current version is $DEPLOYED_VERSION. Waiting before checking again..."
sleep 60
done
echo "$GITHUB_SHA not deployed after 10 minutes."
exit 1
shell: bash