Skip to content

Merge branch 'master' of https://github.com/AliasBretaud/KanjiBox-front #39

Merge branch 'master' of https://github.com/AliasBretaud/KanjiBox-front

Merge branch 'master' of https://github.com/AliasBretaud/KanjiBox-front #39

Workflow file for this run

name: Jest tests
on:
push:
branches: ["develop", "master"]
pull_request:
branches: ["develop", "master"]
jobs:
unit_tests:
name: Unit tests
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: lts/*
- name: Install Yarn packages
run: yarn install --immutable
- name: Run unit tests
run: yarn test