Bump the eslint group across 1 directory with 9 updates #302
Workflow file for this run
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: "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 |