This repository has been archived by the owner on Jun 23, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
59 lines (56 loc) · 1.98 KB
/
main.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
---
name: Main
on: [push]
jobs:
tests:
name: Tests
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: nschloe/action-cached-lfs-checkout@v1
- name: Setup Node.js
uses: ./.github/actions/setup-nodejs
- name: Check source code
run: |
npm run lint
npm run copy:paste:detector
- name: Compile source code
run: npm run compile
- name: Run unit tests
run: npm run test:unit:coverage
- name: Upload code coverage artifact
uses: actions/upload-artifact@v4
with:
name: code-coverage
path: target/coverage/clover.xml
retention-days: 1
if-no-files-found: error
deploy-to-cloudflare:
name: Deploy to Cloudflare
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/main'
permissions:
contents: read
deployments: write
needs: [tests]
concurrency:
group: deploy-to-cloudflare
env:
GIT_HUB_API_BASE_URL: ${{ secrets.GIT_HUB_API_BASE_URL }}
GIT_HUB_API_TOKEN: ${{ secrets.GIT_HUB_API_TOKEN }}
GIT_HUB_LOGIN: ${{ secrets.GIT_HUB_LOGIN }}
steps:
- name: Checkout code
uses: nschloe/action-cached-lfs-checkout@v1
- name: Setup Node.js
uses: ./.github/actions/setup-nodejs
- name: Build website
run: npm run build
- name: Publish to Cloudflare Pages
uses: cloudflare/pages-action@v1
with:
apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }}
accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
projectName: ${{ secrets.CLOUDFLARE_PROJECT_NAME }}
directory: ./target/dist
wranglerVersion: "3"