From c49074a37b5c482fd7e59028d93dbf2b77702a48 Mon Sep 17 00:00:00 2001 From: Cedric van Putten Date: Wed, 12 Jan 2022 15:21:18 +0100 Subject: [PATCH] chore: add basic e2e test workflow for main action --- .github/workflows/test.yml | 41 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 .github/workflows/test.yml diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 000000000..78724db9a --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,41 @@ +name: test + +on: + push: + branches: [main] + +concurrency: + group: test-${{ github.ref }} + cancel-in-progress: true + +jobs: + setup: + strategy: + matrix: + os: + - macos-latest + - ubuntu-latest + - windows-latest + runs-on: ${{ matrix.os }} + steps: + - name: 🏗 Setup Expo + uses: ./ + with: + eas-version: 0.44.1 + eas-cache: true + expo-version: 5.0.3 + expo-cache: true + token: ${{ secrets.EXPO_TOKEN }} + + - name: 🧪 EAS installed + runs: eas --version + + - name: 🧪 EAS authenticated + runs: eas whoami + + - name: 🧪 Expo installed + runs: expo --version + + - name: 🧪 Expo authenticated + runs: expo whoami +