Skip to content
This repository has been archived by the owner on Dec 30, 2023. It is now read-only.

Merge pull request #3 from christianvuerings/christianvuerings-patch-1 #17

Merge pull request #3 from christianvuerings/christianvuerings-patch-1

Merge pull request #3 from christianvuerings/christianvuerings-patch-1 #17

Workflow file for this run

name: Jest
on:
pull_request:
branches:
- main
merge_group:
push:
branches:
- main
jobs:
jest:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
persist-credentials: false
- uses: actions/setup-node@v3
with:
node-version-file: ".nvmrc"
cache: "npm"
- name: Install dependencies
run: |
npm install
- name: Run jest
run: |
npm run test