Skip to content

chore(deps): bump expo-splash-screen from 55.0.13 to 56.0.7 #3661

chore(deps): bump expo-splash-screen from 55.0.13 to 56.0.7

chore(deps): bump expo-splash-screen from 55.0.13 to 56.0.7 #3661

Workflow file for this run

name: CI/CD
on:
pull_request:
workflow_dispatch:
push:
branches:
- main
permissions:
contents: read
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
- uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
with:
node-version: "20.x"
registry-url: "https://registry.npmjs.org"
scope: "@knocklabs"
- name: Install dependencies
run: yarn --immutable
- name: Check formatting
run: yarn format:check
- name: Build packages
run: yarn build:packages
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
- name: Run type check
run: yarn type:check
- name: Run Lint
run: yarn lint
- name: Run tests
run: yarn test:ci
- name: Upload results to Codecov
uses: codecov/codecov-action@75cd11691c0faa626561e295848008c8a7dddffe # v5.5.4
with:
token: ${{ secrets.CODECOV_TOKEN }}
slug: knocklabs/javascript
- name: Upload test results to Codecov
if: ${{ !cancelled() }}
uses: codecov/test-results-action@0fa95f0e1eeaafde2c782583b36b28ad0d8c77d3 # v1.2.1
with:
token: ${{ secrets.CODECOV_TOKEN }}