Skip to content

Merge pull request #104 from OPIDoR/dev #18

Merge pull request #104 from OPIDoR/dev

Merge pull request #104 from OPIDoR/dev #18

Workflow file for this run

name: Run jest tests on pull request
on:
push:
branches:
- '*'
pull_request:
branches:
- '*'
jobs:
run-jest:
runs-on: ubuntu-latest
environment: development
steps:
- name: Checkout code
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version-file: .nvmrc
cache: 'yarn'
- name: Install dependencies
run: yarn install
- name: Run Jest test
run: yarn test