Skip to content

Bump react-native-screens from 3.31.1 to 3.35.0 #322

Bump react-native-screens from 3.31.1 to 3.35.0

Bump react-native-screens from 3.31.1 to 3.35.0 #322

Workflow file for this run

name: Inrupt Data Wallet CI
on:
pull_request: {}
push:
branches: [ main ]
env:
CI: true
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
lint:
uses: inrupt/typescript-sdk-tools/.github/workflows/reusable-lint.yml@v3
unit-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: ".nvmrc"
cache: npm
- run: npm ci
- run: npm run test:snapshot
# Upload coverage for sonarcube (only matching OS and one node version required)
- uses: actions/upload-artifact@v4
with:
name: code-coverage
path: coverage/
sonar-scan:
if: ${{ github.actor != 'dependabot[bot]' }}
needs: [unit-tests]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
# Sonar analysis needs the full history for features like automatic assignment of bugs. If the following step
# is not included the project will show a warning about incomplete information.
fetch-depth: 0
- uses: actions/download-artifact@v4
with:
name: code-coverage
path: coverage/
- uses: SonarSource/sonarcloud-github-action@v3
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}