Skip to content

Commit caae26c

Browse files
committed
workflows/dataconnect_demo_app.yml added
1 parent acb9937 commit caae26c

File tree

1 file changed

+35
-0
lines changed

1 file changed

+35
-0
lines changed
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
name: Data Connect Demo App
2+
3+
on:
4+
pull_request:
5+
paths:
6+
- firebase-dataconnect/demo/**
7+
- .github/workflows/dataconnect_demo_app.yml
8+
9+
defaults:
10+
run:
11+
shell: bash
12+
working-directory: firebase-dataconnect/demo
13+
14+
concurrency:
15+
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
16+
cancel-in-progress: true
17+
18+
jobs:
19+
assemble:
20+
continue-on-error: false
21+
runs-on: ubuntu-latest
22+
steps:
23+
- uses: actions/checkout@v3
24+
- uses: actions/setup-node@v3
25+
with:
26+
node-version: 20
27+
- run: npm install [email protected]
28+
- run: ./gradlew assemble
29+
30+
spotlessCheck:
31+
continue-on-error: false
32+
runs-on: ubuntu-latest
33+
steps:
34+
- uses: actions/checkout@v3
35+
- run: ./gradlew spotlessCheck

0 commit comments

Comments
 (0)