Skip to content

[Fix] iOS denied notificationPermissionChange #458

[Fix] iOS denied notificationPermissionChange

[Fix] iOS denied notificationPermissionChange #458

Workflow file for this run

name: Run Tests
on:
pull_request:
branches:
- "**"
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Use Python 2.7
uses: actions/setup-python@v4
with:
python-version: '2.7'
- name: "[Setup] Install dependencies"
run: yarn
- name: "[Test] Run linters"
continue-on-error: true
run: yarn lint
- name: "[Test] Run all legacy ava tests"
run: yarn test:CI
- name: "[Test] Run all jest tests"
run: yarn jest