Skip to content

fixing ntfy sometimes doesn't send notifications #33

fixing ntfy sometimes doesn't send notifications

fixing ntfy sometimes doesn't send notifications #33

Workflow file for this run

name: Tests
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 22
cache: yarn
cache-dependency-path: |
server/yarn.lock
client/yarn.lock
- name: Install root dependencies
run: yarn install --frozen-lockfile
- name: Install server dependencies
run: yarn --cwd server install --frozen-lockfile
- name: Install client dependencies
run: yarn --cwd client install --frozen-lockfile
- name: Lint
run: yarn lint
- name: Run server tests
run: yarn test:server
- name: Run client tests
run: yarn test:client