Skip to content

Do not send reminders for skipped weeks #123

Do not send reminders for skipped weeks

Do not send reminders for skipped weeks #123

Workflow file for this run

name: Quality Check PR
on:
pull_request:
types:
- opened
- synchronize
- reopened
branches:
- main
concurrency:
group: qc-check-app-${{ github.event.pull_request.number }}
cancel-in-progress: true
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v3
- name: Install Node.js
uses: actions/setup-node@v3
with:
node-version: '18.18.0'
cache: 'npm'
- name: Install Dependencies
run: npm ci
- name: Run Lint
run: npm run lint
test-server:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v3
- name: Install Node.js
uses: actions/setup-node@v3
with:
node-version: '18.18.0'
cache: 'npm'
- name: Install Dependencies
working-directory: ./server
run: npm ci
- name: Run Tests
working-directory: ./server
run: npm test
test-client:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v3
- name: Install Node.js
uses: actions/setup-node@v3
with:
node-version: '18.18.0'
cache: 'npm'
- name: Install Dependencies
working-directory: ./client
run: npm ci
- name: Run Tests
working-directory: ./client
run: npm test -- run