mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2025-12-12 23:35:58 +00:00
37 lines
1.2 KiB
YAML
37 lines
1.2 KiB
YAML
name: "frontend: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 - frontend-test-unit-code
|
|
runs-on: ubuntu-latest
|
|
outputs:
|
|
changes: ${{ steps.changes.outputs.frontend-test-unit-code }}
|
|
steps:
|
|
- uses: actions/checkout@9a9194f87191a7e9055e3e9b95b8cfb13023bb08 # v4.1.7
|
|
|
|
- name: Check for frontend file changes
|
|
uses: dorny/paths-filter@dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36 # 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 - Frontend
|
|
needs: files-changed
|
|
runs-on: ubuntu-latest
|
|
env:
|
|
WORKING_DIRECTORY: ./frontend
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@9a9194f87191a7e9055e3e9b95b8cfb13023bb08 # v4.1.7
|
|
|
|
- name: Frontend | Unit
|
|
run: npm install && npm run test:unit
|
|
working-directory: ${{env.WORKING_DIRECTORY}} |