-
Notifications
You must be signed in to change notification settings - Fork 1
41 lines (34 loc) · 1.33 KB
/
test-modules.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
name: Test Modules
on:
workflow_dispatch:
schedule:
- cron: "0 0 * * *"
env:
GIT_CONFIG_NAME: "github-actions"
GIT_CONFIG_EMAIL: [email protected]
GIT_OUTPUT_DIR: dist/summary
GIT_OUTPUT_BRANCH: summary
GIT_COMMIT_MSG: "[automated] update summary (${{ github.sha }})"
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: dart-lang/setup-dart@v1
- name: 🚧 Do prerequisites
run: |
dart pub get
- name: 🧪 Test modules
run: dart run ./store/test/all.dart --ci
- name: 🚀 Upload summary
if: always()
working-directory: ${{ env.GIT_OUTPUT_DIR }}
run: |
git init
git remote add origin "https://x-access-token:${{ secrets.GITHUB_TOKEN }}@github.com/${{ github.repository }}"
git config --local user.name "${{ env.GIT_CONFIG_NAME }}"
git config --local user.email "${{ env.GIT_CONFIG_EMAIL }}"
git switch -c ${{ env.GIT_OUTPUT_BRANCH }}
git add .
git commit --allow-empty -m "${{ env. GIT_COMMIT_MSG }}"
git push -u origin ${{ env.GIT_OUTPUT_BRANCH }} --force