Skip to content

Commit

Permalink
chore: add basic e2e test workflow for main action (#141)
Browse files Browse the repository at this point in the history
  • Loading branch information
byCedric committed Jan 12, 2022
1 parent 4f28493 commit 2f073f5
Showing 1 changed file with 44 additions and 0 deletions.
44 changes: 44 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
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 repo
uses: actions/checkout@v2

- 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
run: eas --version

- name: 🧪 EAS authenticated
run: eas whoami

- name: 🧪 Expo installed
run: expo --version

- name: 🧪 Expo authenticated
run: expo whoami

0 comments on commit 2f073f5

Please sign in to comment.