File tree Expand file tree Collapse file tree 2 files changed +16
-6
lines changed Expand file tree Collapse file tree 2 files changed +16
-6
lines changed Original file line number Diff line number Diff line change 12
12
schedule :
13
13
- cron : ' 15 4 * * *'
14
14
15
+ concurrency :
16
+ group : ${{ github.workflow }}-${{ github.event_name }}-${{ github.ref }}
17
+ cancel-in-progress : true
18
+
15
19
jobs :
16
20
check-nightly :
17
21
runs-on : ubuntu-latest
Original file line number Diff line number Diff line change 13
13
branches :
14
14
- main
15
15
16
+ concurrency :
17
+ group : ${{ github.workflow }}-${{ github.event_name }}-${{ github.ref }}
18
+ cancel-in-progress : true
19
+
16
20
jobs :
17
21
build-and-deploy :
18
22
runs-on : ubuntu-latest
@@ -25,18 +29,20 @@ jobs:
25
29
node-version : ' 22'
26
30
cache : ' yarn'
27
31
32
+ - name : 🚚️ Install dependencies
33
+ working-directory : website
34
+ run : yarn install --frozen-lockfile
35
+
28
36
- name : ⬇️ Fetch the latest test results
29
37
working-directory : website
30
38
run : yarn data:fetch
31
39
env :
32
- FIREBASE_APP_PROJECTNAME : ${{ secrets.firebase_app_projectname }}
33
- FIREBASE_APP_SERVICE_KEY : ${{ secrets.firebase_app_service_key }}
40
+ FIREBASE_APP_PROJECTNAME : ${{ secrets.FIREBASE_APP_PROJECTNAME }}
41
+ FIREBASE_APP_SERVICE_KEY : ${{ secrets.FIREBASE_APP_SERVICE_KEY }}
34
42
35
- - name : 📦️ Install & build app
43
+ - name : 📦️ Build website app
36
44
working-directory : website
37
- run : |
38
- yarn install --frozen-lockfile
39
- yarn build
45
+ run : yarn build
40
46
41
47
- name : 🚀 Deploy to GitHub Pages
42
48
uses : peaceiris/actions-gh-pages@v4
You can’t perform that action at this time.
0 commit comments