Skip to content

Commit 8000229

Browse files
committed
Add a few workflows
1 parent c57ea06 commit 8000229

File tree

5 files changed

+313
-0
lines changed

5 files changed

+313
-0
lines changed

.github/workflows/build-android.yml

+60
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
name: Build Android App
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
paths:
8+
- '.github/workflows/build-android.yml'
9+
- 'android/**'
10+
- 'example/android/**'
11+
- 'yarn.lock'
12+
- 'example/yarn.lock'
13+
pull_request:
14+
paths:
15+
- '.github/workflows/build-android.yml'
16+
- 'android/**'
17+
- 'example/android/**'
18+
- 'yarn.lock'
19+
- 'example/yarn.lock'
20+
21+
jobs:
22+
build:
23+
name: Build Android Example App
24+
runs-on: ubuntu-latest
25+
defaults:
26+
run:
27+
working-directory: example/android
28+
steps:
29+
- uses: actions/checkout@v2
30+
31+
- name: Setup JDK 1.8
32+
uses: actions/setup-java@v1
33+
with:
34+
java-version: 1.8
35+
36+
- name: Get yarn cache directory path
37+
id: yarn-cache-dir-path
38+
run: echo "::set-output name=dir::$(yarn cache dir)"
39+
- name: Restore node_modules from cache
40+
uses: actions/cache@v2
41+
id: yarn-cache
42+
with:
43+
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
44+
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
45+
restore-keys: |
46+
${{ runner.os }}-yarn-
47+
- name: Install node_modules for example/
48+
run: yarn install --frozen-lockfile --cwd ..
49+
50+
- name: Restore Gradle cache
51+
uses: actions/cache@v2
52+
with:
53+
path: |
54+
~/.gradle/caches
55+
~/.gradle/wrapper
56+
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }}
57+
restore-keys: |
58+
${{ runner.os }}-gradle-
59+
- name: Run Gradle Build
60+
run: ./gradlew assembleDebug

.github/workflows/build-ios.yml

+70
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,70 @@
1+
name: Build iOS App
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
paths:
8+
- '.github/workflows/build-ios.yml'
9+
- 'ios/**'
10+
- '*.podspec'
11+
- 'example/ios/**'
12+
pull_request:
13+
paths:
14+
- '.github/workflows/build-ios.yml'
15+
- 'ios/**'
16+
- '*.podspec'
17+
- 'example/ios/**'
18+
19+
jobs:
20+
build:
21+
name: Build iOS Example App
22+
runs-on: macOS-latest
23+
defaults:
24+
run:
25+
working-directory: example/ios
26+
steps:
27+
- uses: actions/checkout@v2
28+
29+
- name: Get yarn cache directory path
30+
id: yarn-cache-dir-path
31+
run: echo "::set-output name=dir::$(yarn cache dir)"
32+
- name: Restore node_modules from cache
33+
uses: actions/cache@v2
34+
id: yarn-cache
35+
with:
36+
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
37+
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
38+
restore-keys: |
39+
${{ runner.os }}-yarn-
40+
- name: Install node_modules for example/
41+
run: yarn install --frozen-lockfile --cwd ..
42+
43+
- name: Setup Ruby (bundle)
44+
uses: ruby/setup-ruby@v1
45+
with:
46+
ruby-version: 2.6
47+
bundler-cache: true
48+
working-directory: example/ios
49+
50+
- name: Restore Pods cache
51+
uses: actions/cache@v2
52+
with:
53+
path: |
54+
example/ios/Pods
55+
~/Library/Caches/CocoaPods
56+
~/.cocoapods
57+
key: ${{ runner.os }}-pods-${{ hashFiles('**/Podfile.lock') }}
58+
restore-keys: |
59+
${{ runner.os }}-pods-
60+
- name: Install Pods
61+
run: bundle exec pod check || bundle exec pod install
62+
- name: Build App
63+
run: "xcodebuild \
64+
-workspace MultithreadingExample.xcworkspace \
65+
-scheme MultithreadingExample \
66+
-sdk iphonesimulator \
67+
-configuration Debug \
68+
-destination \"generic/platform=iOS Simulator\" \
69+
build \
70+
CODE_SIGNING_ALLOWED=NO"
+60
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
name: Validate Android
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
paths:
8+
- '.github/workflows/validate-android.yml'
9+
- 'android/**'
10+
- '.editorconfig'
11+
pull_request:
12+
paths:
13+
- '.github/workflows/validate-android.yml'
14+
- 'android/**'
15+
- '.editorconfig'
16+
17+
jobs:
18+
lint:
19+
name: Gradle Lint
20+
runs-on: ubuntu-latest
21+
defaults:
22+
run:
23+
working-directory: ./android
24+
steps:
25+
- uses: actions/checkout@v2
26+
- name: Setup JDK 1.8
27+
uses: actions/setup-java@v1
28+
with:
29+
java-version: 1.8
30+
31+
- name: Get yarn cache directory path
32+
id: yarn-cache-dir-path
33+
run: echo "::set-output name=dir::$(yarn cache dir)"
34+
- name: Restore node_modules from cache
35+
uses: actions/cache@v2
36+
id: yarn-cache
37+
with:
38+
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
39+
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
40+
restore-keys: |
41+
${{ runner.os }}-yarn-
42+
- name: Install node_modules
43+
run: yarn install --frozen-lockfile --cwd ..
44+
45+
- name: Restore Gradle cache
46+
uses: actions/cache@v2
47+
with:
48+
path: |
49+
~/.gradle/caches
50+
~/.gradle/wrapper
51+
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }}
52+
restore-keys: |
53+
${{ runner.os }}-gradle-
54+
- name: Run Gradle Lint
55+
run: ./gradlew lint
56+
57+
- name: Parse Gradle Lint Report
58+
uses: yutailang0119/[email protected]
59+
with:
60+
xml_path: android/build/reports/lint-results.xml

.github/workflows/validate-cpp.yml

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
name: Validate C++
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
paths:
8+
- '.github/workflows/validate-cpp.yml'
9+
- 'cpp/**'
10+
pull_request:
11+
paths:
12+
- '.github/workflows/validate-cpp.yml'
13+
- 'cpp/**'
14+
15+
jobs:
16+
lint:
17+
name: SwiftLint
18+
runs-on: ubuntu-latest
19+
steps:
20+
- uses: actions/checkout@v2
21+
- uses: reviewdog/action-cpplint@master
22+
with:
23+
github_token: ${{ secrets.github_token }}
24+
reporter: github-pr-review
25+
flags: --linelength=230
26+
targets: --recursive cpp android/src/main/cpp
27+
filter: "-legal/copyright\
28+
,-readability/todo\
29+
,-build/namespaces\
30+
,-whitespace/comments\
31+
"

.github/workflows/validate-js.yml

+92
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,92 @@
1+
name: Validate JS
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
paths:
8+
- '.github/workflows/validate-js.yml'
9+
- 'src/**'
10+
- '*.json'
11+
- '*.js'
12+
- '*.lock'
13+
- 'example/src/**'
14+
- 'example/*.json'
15+
- 'example/*.js'
16+
- 'example/*.lock'
17+
- 'example/*.tsx'
18+
pull_request:
19+
paths:
20+
- '.github/workflows/validate-js.yml'
21+
- 'src/**'
22+
- '*.json'
23+
- '*.js'
24+
- '*.lock'
25+
- 'example/src/**'
26+
- 'example/*.json'
27+
- 'example/*.js'
28+
- 'example/*.lock'
29+
- 'example/*.tsx'
30+
31+
jobs:
32+
compile:
33+
name: Compile JS (tsc)
34+
runs-on: ubuntu-latest
35+
steps:
36+
- uses: actions/checkout@v2
37+
38+
- name: Install reviewdog
39+
uses: reviewdog/action-setup@v1
40+
41+
- name: Get yarn cache directory path
42+
id: yarn-cache-dir-path
43+
run: echo "::set-output name=dir::$(yarn cache dir)"
44+
- name: Restore node_modules from cache
45+
uses: actions/cache@v2
46+
id: yarn-cache
47+
with:
48+
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
49+
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
50+
restore-keys: |
51+
${{ runner.os }}-yarn-
52+
- name: Install node_modules
53+
run: yarn install --frozen-lockfile
54+
- name: Install node_modules (example/)
55+
run: yarn install --frozen-lockfile --cwd example
56+
57+
- name: Run TypeScript # Reviewdog tsc errorformat: %f:%l:%c - error TS%n: %m
58+
run: |
59+
yarn typescript | reviewdog -name="tsc" -efm="%f(%l,%c): error TS%n: %m" -reporter="github-pr-review" -filter-mode="nofilter" -fail-on-error -tee
60+
env:
61+
REVIEWDOG_GITHUB_API_TOKEN: ${{ secrets.GITHUB_TOKEN }}
62+
63+
lint:
64+
name: Lint JS (eslint, prettier)
65+
runs-on: ubuntu-latest
66+
steps:
67+
- uses: actions/checkout@v2
68+
69+
- name: Get yarn cache directory path
70+
id: yarn-cache-dir-path
71+
run: echo "::set-output name=dir::$(yarn cache dir)"
72+
- name: Restore node_modules from cache
73+
uses: actions/cache@v2
74+
id: yarn-cache
75+
with:
76+
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
77+
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
78+
restore-keys: |
79+
${{ runner.os }}-yarn-
80+
- name: Install node_modules
81+
run: yarn install --frozen-lockfile
82+
- name: Install node_modules (example/)
83+
run: yarn install --frozen-lockfile --cwd example
84+
85+
- name: Run ESLint
86+
run: yarn lint -f @jamesacarr/github-actions
87+
88+
- name: Run ESLint with auto-fix
89+
run: yarn lint --fix
90+
91+
- name: Verify no files have changed after auto-fix
92+
run: git diff --exit-code HEAD

0 commit comments

Comments
 (0)