Skip to content

Commit

Permalink
(PC-18251) fix(e2e): add android GitHub action poc
Browse files Browse the repository at this point in the history
  • Loading branch information
Dimitri Kopriwa committed Oct 31, 2022
1 parent ae2240a commit f827bf4
Showing 1 changed file with 28 additions and 2 deletions.
30 changes: 28 additions & 2 deletions .github/workflows/e2e-android-native.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,31 @@ jobs:
tbd:
runs-on: ubuntu-latest
steps:
- name: Hello World
run: echo "Hello World"
- uses: actions/checkout@v3

- uses: actions/setup-node@v3
with:
node-version: '.nvmrc'

- name: Set up JDK 11
uses: actions/setup-java@v3
with:
java-version: 11

- name: Setup Android SDK
uses: android-actions/setup-android@v2

- uses: ruby/setup-ruby@v1
# with:
# bundler-cache: true

- name: Setup sentry credentials
shell: bash
run: |
echo "[defaults]" >> ~/.sentryclirc
echo "url=https://sentry.passculture.team/" >> ~/.sentryclirc
echo "org=sentry" >> ~/.sentryclirc
echo "project=application-native" >> ~/.sentryclirc
echo "" >> ~/.sentryclirc
echo "[auth]" >> ~/.sentryclirc
echo "token=$SENTRY_AUTH_TOKEN" >> ~/.sentryclirc

0 comments on commit f827bf4

Please sign in to comment.