Commit 337d4a7

NobodyForNothing <82763757+NobodyForNothing@users.noreply.github.com>
2023-05-18 11:52:18
Create fastlane validation workflow
1 parent 00cedc7
Changed files (1)
.github
.github/workflows/fastlane-meta.yml
@@ -0,0 +1,23 @@
+name: Fastlane Metadata
+on:
+  push:
+    branches: '**'
+    paths:
+      - "fastlane/**"
+      - ".github/workflows/fastlane-metadata.yaml"
+  pull_request:
+    branches: '**'
+    paths:
+      - "fastlane/**"
+      - ".github/workflows/fastlane-metadata.yaml"
+    
+jobs:
+  validate:
+      name: Validate
+      runs-on: ubuntu-latest
+      steps:
+        - uses: actions/checkout@v3
+        - uses: ashutoshgngwr/validate-fastlane-supply-metadata@v2
+          with:
+            fastlaneDir: ./fastlane
+