Skip to content

chore(*): Update dependency nuxt to v3 [SECURITY] #12727

chore(*): Update dependency nuxt to v3 [SECURITY]

chore(*): Update dependency nuxt to v3 [SECURITY] #12727

Workflow file for this run

name: Unit Tests
on: [push, pull_request]
jobs:
backend:
name: Test Backend
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- run: |
cd backend
# smoke test and lint
make run run-cmd="dotnet build" make-args="no-interactive no-tty"
make test-ci
- uses: codecov/codecov-action@ab904c41d6ece82784817410c45d8b8c02684457 # v3
crawler:
name: Test Crawler
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- run: |
cd crawler
make run run-cmd="npm run lint" make-args="no-interactive no-tty"
make test-ci
- uses: codecov/codecov-action@ab904c41d6ece82784817410c45d8b8c02684457 # v3
crawler-api-backend:
name: Test Crawler Api Backend
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- run: |
cd crawler-api-backend
make run run-cmd="npm run lint" make-args="no-interactive no-tty"
make test-ci
- uses: codecov/codecov-action@ab904c41d6ece82784817410c45d8b8c02684457 # v3
frontend:
name: Test Frontend
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- run: |
cd frontend
make run run-cmd="npm run lint" make-args="no-interactive no-tty"
make test-ci
- uses: codecov/codecov-action@ab904c41d6ece82784817410c45d8b8c02684457 # v3
captcha-service:
name: Test Captcha Service
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- run: |
cd captcha-service
make run run-cmd="npm run lint" make-args="no-interactive no-tty"
make test-ci
- uses: codecov/codecov-action@ab904c41d6ece82784817410c45d8b8c02684457 # v3
ohunt:
name: Test OHunt
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- run: |
cd ohunt
# smoke test and lint
make run run-cmd="dotnet build" make-args="no-interactive no-tty"
make test-ci
- uses: codecov/codecov-action@ab904c41d6ece82784817410c45d8b8c02684457 # v3
commitlint:
name: Commitlint
runs-on: ubuntu-latest
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
steps:
- uses: actions/checkout@master
with:
fetch-depth: 0
- uses: wagoid/commitlint-github-action@9763196e10f27aef304c9b8b660d31d97fce0f99 # v5