-
Notifications
You must be signed in to change notification settings - Fork 632
47 lines (40 loc) · 1.11 KB
/
jest.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
name: Test UNM with Jest
on:
push:
branches:
- 'enhanced'
paths:
- '*.js'
- 'package.json'
- 'src/**.js'
- 'yarn.lock'
- '.github/workflows/jest.yml'
pull_request:
types:
- opened
- synchronize
- reopened
paths:
- '*.js'
- 'package.json'
- 'src/**.js'
- 'yarn.lock'
- '.github/workflows/jest.yml'
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
test-sources:
runs-on: ubuntu-latest
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- name: Checkout
uses: actions/checkout@v4
- name: Use Node.js 20
uses: actions/setup-node@v4
with:
node-version: 20
cache: yarn
- name: Install dependencies
run: yarn
- name: Test the sources with Jest
run: yarn test