Update dependency cookie to ^0.7.0 [SECURITY] #788
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
pull_request: | |
jobs: | |
chat: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: oven-sh/setup-bun@v1 | |
- name: Install dependencies | |
run: bun install --frozen-lockfile | |
- run: make test_acceptance | |
working-directory: services/chat | |
clsi: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: oven-sh/setup-bun@v1 | |
- name: Install dependencies | |
run: bun install --frozen-lockfile | |
- run: make test_unit | |
working-directory: services/clsi | |
contacts: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: oven-sh/setup-bun@v1 | |
- name: Install dependencies | |
run: bun install --frozen-lockfile | |
- run: make test_unit | |
working-directory: services/contacts | |
- run: make test_acceptance | |
working-directory: services/contacts | |
docstore: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: oven-sh/setup-bun@v1 | |
- name: Install dependencies | |
run: bun install --frozen-lockfile | |
- run: make test_unit | |
working-directory: services/docstore | |
- run: make test_acceptance | |
working-directory: services/docstore | |
document-updater: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: oven-sh/setup-bun@v1 | |
- name: Install dependencies | |
run: bun install --frozen-lockfile | |
- run: make test_unit | |
working-directory: services/document-updater | |
- run: make test_acceptance | |
working-directory: services/document-updater | |
filestore: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: oven-sh/setup-bun@v1 | |
- name: Install dependencies | |
run: bun install --frozen-lockfile | |
- run: make test_unit | |
working-directory: services/filestore | |
notifications: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: oven-sh/setup-bun@v1 | |
- name: Install dependencies | |
run: bun install --frozen-lockfile | |
- run: make test_unit | |
working-directory: services/notifications | |
project-history: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: oven-sh/setup-bun@v1 | |
- name: Install dependencies | |
run: bun install --frozen-lockfile | |
- run: make test_unit | |
working-directory: services/project-history | |
- run: make test_acceptance | |
working-directory: services/project-history | |
real-time: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: oven-sh/setup-bun@v1 | |
- name: Install dependencies | |
run: bun install --frozen-lockfile | |
- run: make test_unit | |
working-directory: services/real-time | |
# - run: make test_acceptance | |
# working-directory: services/real-time | |
spelling: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: oven-sh/setup-bun@v1 | |
- name: Install dependencies | |
run: bun install --frozen-lockfile | |
- run: make test_unit | |
working-directory: services/spelling | |
- run: make test_acceptance | |
working-directory: services/spelling | |
track-changes: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: oven-sh/setup-bun@v1 | |
- name: Install dependencies | |
run: bun install --frozen-lockfile | |
- run: make test_unit | |
working-directory: services/track-changes | |
- run: make test_acceptance | |
working-directory: services/track-changes | |
web: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: oven-sh/setup-bun@v1 | |
- name: Install dependencies | |
run: bun install --frozen-lockfile | |
# - run: make test_unit | |
# working-directory: services/web | |
- run: make test_karma | |
working-directory: services/web | |
# - run: make test_acceptance | |
# working-directory: services/web | |
# - run: make test_frontend | |
# working-directory: services/web | |
# - run: make test_frontend_ct | |
# working-directory: services/web |