Skip to content

chore(github-actions): create update.yml and add code coverage config… #5

chore(github-actions): create update.yml and add code coverage config…

chore(github-actions): create update.yml and add code coverage config… #5

Workflow file for this run

name: update
on: push
jobs:
update:
name: EAS Update
runs-on: windows-latest
steps:
- name: Check for EXPO_TOKEN
run: |
if [ -z "${{ secrets.EXPO_TOKEN }}" ];
- name: Checkout repository
uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: '>=18.x'
cache: npm
- name: Setup EAS
uses: expo/expo-github-action@v8
with:
eas-version: latest
token: ${{ secrets.EXPO_TOKEN }}
- name: Install dependencies
run: npm install
- name: Deploy to Expo
run: npm run build
env:
EXPO_TOKEN: ${{ secrets.EXPO_TOKEN }}