Skip to content

Bump the eslint group across 1 directory with 9 updates #302

Bump the eslint group across 1 directory with 9 updates

Bump the eslint group across 1 directory with 9 updates #302

name: "backend:test:unit test code with defined suites"
on: push
jobs:
# only (but most important) job from this workflow required for pull requests
# check results serve as run conditions for all other jobs here
files-changed:
name: Detect File Changes - backend-test-unit-code
runs-on: ubuntu-latest
outputs:
changes: ${{ steps.changes.outputs.backend-test-unit-code }}
steps:
- uses: actions/checkout@v4
- name: Check for backend file changes
uses: dorny/paths-filter@v3.0.2
id: changes
with:
token: ${{ github.token }}
filters: .github/file-filters.yml
list-files: shell
unit:
if: needs.files-changed.outputs.changes == 'true'
name: Unit - Backend
needs: files-changed
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Backend | Unit
run: npm install && npm run db:migrate && npm run test:unit