EVA-160 - enable rest tests and change helper #126
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: 'npm jest' | |
on: | |
pull_request: | |
paths: | |
- '.github/**/*' | |
- 'src/modules/**.js' | |
jobs: | |
jest: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout the repository | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 1 | |
submodules: recursive | |
# ------------------------------------------------------------------------------ | |
# Setup Node. | |
# ------------------------------------------------------------------------------ | |
- name: Check for .nvmrc file | |
id: check-nvmrc | |
run: echo "::set-output name=exists::$(test -f ${{ github.workspace }}/.nvmrc && echo 'true' || echo 'false')" | |
- 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: npm run jest |