Skip to content

chore(deps): update dependency @divvi/mobile to ^1.0.0-alpha.44 #34621

chore(deps): update dependency @divvi/mobile to ^1.0.0-alpha.44

chore(deps): update dependency @divvi/mobile to ^1.0.0-alpha.44 #34621

Workflow file for this run

name: Test
on:
# Run on pushes to main..
push:
branches:
- main
# ..any pull request and merge queue
pull_request:
merge_group:
# Cancel any in progress run of the workflow for a given PR
# This avoids building outdated code
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.ref_name }}
cancel-in-progress: true
jobs:
mobile:
name: Mobile
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: 'package.json'
check-latest: true
- uses: ./.github/actions/yarn-install
#
# Disabled as we don't have any unit tests yet
#
# - name: Build
# run: yarn build
# - name: Run mobile tests
# run: |
# mkdir -p test-results/jest
# yarn test:ci
# - name: Upload Coverage Report
# uses: actions/upload-artifact@v4
# with:
# path: coverage/lcov-report
# - name: 'Upload to Codecov'
# uses: codecov/codecov-action@v4
# with:
# token: ${{ secrets.CODECOV_TOKEN }}