mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2025-12-12 23:35:58 +00:00
Bumps [actions/checkout](https://github.com/actions/checkout) from 6d193bf28034eafb982f37bd894289fe649468fc to 163217dfcd28294438ea1c1c149cfaf66eec283e.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](6d193bf280...163217dfcd)
---
updated-dependencies:
- dependency-name: actions/checkout
dependency-type: direct:production
...
Signed-off-by: dependabot[bot] <support@github.com>
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@163217dfcd28294438ea1c1c149cfaf66eec283e # v4.1.7
|
|
|
|
- name: Check for frontend file changes
|
|
uses: 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@163217dfcd28294438ea1c1c149cfaf66eec283e # v4.1.7
|
|
|
|
- name: Frontend | Unit
|
|
run: npm install && npm run test:unit
|
|
working-directory: ${{env.WORKING_DIRECTORY}} |