Skip to content

[User model] [Fix] macOS Safari prompting and subscribing #476

[User model] [Fix] macOS Safari prompting and subscribing

[User model] [Fix] macOS Safari prompting and subscribing #476

Workflow file for this run

name: Run Tests
on:
pull_request:
branches:
- "**"
jobs:
test:
runs-on: ubuntu-22.04
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: "[Setup] Install dependencies"
run: yarn
- name: "[Test] Run linters"
continue-on-error: true
run: yarn lint
- name: "[Test] Run all jest tests"
run: yarn test