Skip to content

chore: update licenses and disclaimer #22086

chore: update licenses and disclaimer

chore: update licenses and disclaimer #22086

Workflow file for this run

name: Test
on:
# Run on pushes to main..
push:
branches:
- main
# ..and any pull request.
pull_request:
# Cancel any in progress run of the workflow for a given PR
# This avoids building outdated code
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref }}
cancel-in-progress: true
jobs:
mobile:
name: Mobile
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/yarn-install
- name: Build
run: yarn build
- name: Update RootStateSchema if necessary
run: yarn test:update-root-state-schema
- name: Fail if someone forgot to commit "RootStateSchema.json"
run: git diff --exit-code
- name: Run mobile tests
run: |
mkdir -p test-results/jest
yarn test:ci
- name: Upload Coverage Report
uses: actions/upload-artifact@v3
with:
path: coverage/lcov-report
- name: 'Upload to Codecov'
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}