Skip to content

[Snyk] Upgrade @tabler/icons-svelte from 3.5.0 to 3.6.0 #123

[Snyk] Upgrade @tabler/icons-svelte from 3.5.0 to 3.6.0

[Snyk] Upgrade @tabler/icons-svelte from 3.5.0 to 3.6.0 #123

Workflow file for this run

name: Run Backend Tests
on:
push:
branches:
- main
- develop
pull_request:
branches:
- main
- develop
jobs:
build:
name: Run Backend tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 18.17.0
- uses: oven-sh/setup-bun@v1
with:
bun-version: latest
- name: Install dependencies for the backend
run: bun install
working-directory: src/server/workspace
- name: Run Backend Tests
run: bun run test:cov
working-directory: src/server/workspace
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v4.0.1
with:
token: ${{ secrets.CODECOV_TOKEN }}