Skip to content

Commit 364214a

Browse files
Merge pull request #486 from reown-com/chore/test-action
chore: added empty test action
2 parents dc60610 + 134b0b7 commit 364214a

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

.github/workflows/expo-ci-cd.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: React Native CI/CD
2+
3+
permissions:
4+
id-token: write
5+
contents: read
6+
7+
on:
8+
workflow_dispatch:
9+
inputs:
10+
platform:
11+
type: choice
12+
description: "Platform to build"
13+
default: "all"
14+
options:
15+
- android
16+
- ios
17+
- all
18+
19+
jobs:
20+
test-echo:
21+
runs-on: ubuntu-latest
22+
timeout-minutes: 5
23+
steps:
24+
- name: Echo message
25+
run: |
26+
echo "✅ Workflow dispatch is working!"
27+
echo "Branch: ${{ github.ref }}"
28+
echo "Triggered by: ${{ github.actor }}"
29+
echo "Event: ${{ github.event_name }}"

0 commit comments

Comments
 (0)