mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
09b06485e9
Summary: This PR updates the GitHub actions uses in the repository workflows. ## Changelog N/A Pull Request resolved: https://github.com/facebook/react-native/pull/33595 Test Plan: Run the workflows. Reviewed By: rickhanlonii Differential Revision: D35495697 Pulled By: cortinico fbshipit-source-id: a41a83dc61f199f9acbc0ce28d6a23fafc94a99c
24 lines
594 B
YAML
24 lines
594 B
YAML
name: Test Docker Android Image
|
|
# This workflow is triggered on commits to main and pull requests.
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
test-docker-android:
|
|
name: Test Docker
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Free up space by removing unnecessary folders
|
|
run: |
|
|
sudo rm -rf /usr/share/dotnet
|
|
sudo rm -rf /opt/ghc
|
|
sudo rm -rf "$AGENT_TOOLSDIRECTORY"
|
|
- name: Build Docker image with Android test app
|
|
run: npm run docker-build-android
|