Skip to content

Merge pull request #243 from wyeworks/fix/configurar-grupo-after-pre-… #142

Merge pull request #243 from wyeworks/fix/configurar-grupo-after-pre-…

Merge pull request #243 from wyeworks/fix/configurar-grupo-after-pre-… #142

Workflow file for this run

name: React Tests and Coverage
on:
# Runs on pushes and pull requests targeting main or develop branches
push:
branches: [main, develop]
paths:
- 'client/**'
pull_request:
branches: [main, develop]
paths:
- 'client/**'
jobs:
react-tests:
# Set the action to run in the `client` sub directory
defaults:
run:
working-directory: ./client
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '20' # You can choose your preferred Node.js version
- name: Install dependencies
run: npm ci
- name: Run Jest tests
run: npm run test:ci