Skip to content

Feat/use group path for seating assets #1

Feat/use group path for seating assets

Feat/use group path for seating assets #1

Workflow file for this run

name: 'Jest JS Tests'
on:
pull_request:
jobs:
test:
strategy:
fail-fast: false
matrix:
suite:
- slr_jest
runs-on: ubuntu-latest
steps:
- name: Checkout the repository
uses: actions/checkout@v4
with:
fetch-depth: 1000
submodules: recursive
- name: Check for .nvmrc file
id: check-nvmrc
run: |
if test -f "${{ github.workspace }}/.nvmrc"; then
echo "exists=true" >> $GITHUB_OUTPUT
else
echo "exists=false" >> $GITHUB_OUTPUT
fi
- uses: actions/setup-node@v3
if: steps.check-nvmrc.outputs.exists == 'true'
with:
node-version-file: '.nvmrc'
cache: 'npm'
cache-dependency-path: package-lock.json
- name: Install node modules
run: npm ci
- name: Run jest task
run: npx jest tests/${{ matrix.suite }}/