Skip to content

fix(iOS): Allow the original delegate to handle non-Notifee notificat… #1

fix(iOS): Allow the original delegate to handle non-Notifee notificat…

fix(iOS): Allow the original delegate to handle non-Notifee notificat… #1

Workflow file for this run

name: Jest Tests
on:
workflow_dispatch:
pull_request:
paths-ignore:
- 'docs-react-native/**'
- '**/*.md'
push:
branches:
- main
paths-ignore:
- 'docs-react-native/**'
- '**/*.md'
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
jest:
name: Jest
timeout-minutes: 50
runs-on: ubuntu-latest
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 50
submodules: recursive
- uses: actions/setup-node@v4
with:
node-version: 18
- name: Set workflow variables
id: workflow-variables
run: |
echo "yarn-cache=$(yarn cache dir)" >> $GITHUB_OUTPUT
- uses: actions/cache@v4
name: Yarn Cache
id: yarn-cache
with:
path: ${{ steps.workflow-variables.outputs.yarn-cache }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/package.json') }}
restore-keys: |
${{ runner.os }}-yarn-
- name: Yarn Install
uses: nick-fields/retry@v3
with:
timeout_minutes: 10
retry_wait_seconds: 60
max_attempts: 4
command: yarn --no-audit --prefer-offline
- name: Jest
run: yarn tests_rn:test
- uses: codecov/codecov-action@v4
with:
verbose: true