Skip to content

ZaguePrime at pull_request event #7

ZaguePrime at pull_request event

ZaguePrime at pull_request event #7

Workflow file for this run

name: Jest-Test
run-name: ${{ github.actor }} at ${{ github.event_name }} event
on:
workflow_dispatch:
pull_request:
branches:
- main
- release
types:
- opened
- reopened
jobs:
jest-test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Node.js environment
uses: actions/setup-node@v4
with:
node-version: '18.20.3'
- name: Install dependencies
run: |
cd frontend
npm install -g yarn
yarn
- name: Run jest
run: |
cd frontend
yarn test