Skip to content

docs: update README with instructions for viewing branch-specific cov… #8

docs: update README with instructions for viewing branch-specific cov…

docs: update README with instructions for viewing branch-specific cov… #8

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 }}" ]; then
echo "EXPO_TOKEN is not set."
exit 1
fi
shell: bash
- 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 }}