Skip to content

Commit 7f75288

Browse files
committed
use jest tests in workflows
1 parent 8ff24e0 commit 7f75288

File tree

15 files changed

+17
-17
lines changed

15 files changed

+17
-17
lines changed

.github/workflows/analyze.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,4 +73,4 @@ jobs:
7373

7474
- name: Testing...
7575
run: |
76-
make command-analyze
76+
npm run test-unsafe test/jest/analyze.test.js

.github/workflows/config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
branches:
66
- master
77
paths:
8-
- 'eask'
8+
- 'eask'
99
- '**.yml'
1010
- lisp/**
1111
- cmds/**
@@ -73,4 +73,4 @@ jobs:
7373

7474
- name: Testing...
7575
run: |
76-
make command-config
76+
npm run test-unsafe test/jest/config.test.js

.github/workflows/docker.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
strategy:
3030
fail-fast: false
3131
matrix:
32-
os:
32+
os:
3333
- ubuntu-latest
3434
# XXX: `macos-latest` on arm64 is not possible as well!?
3535
# See https://stackoverflow.com/questions/77675906/github-actions-build-docker-image-on-arm64-macos-latest-xlarge
@@ -67,4 +67,4 @@ jobs:
6767

6868
- name: Testing...
6969
run: |
70-
make command-docker
70+
npm run test-unsafe test/jest/docker.test.js

.github/workflows/emacs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,4 +73,4 @@ jobs:
7373

7474
- name: Testing...
7575
run: |
76-
make command-emacs
76+
npm run test-unsafe test/jest/emacs.test.js

.github/workflows/exec.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,4 +70,4 @@ jobs:
7070

7171
- name: Testing...
7272
run: |
73-
make command-exec
73+
npm run test-unsafe test/jest/exec.test.js

.github/workflows/exit_status.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,4 +50,4 @@ jobs:
5050

5151
- name: Testing...
5252
run: |
53-
make command-exit-status
53+
npm run test-unsafe test/jest/exit-status.test.js

.github/workflows/global.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,4 +73,4 @@ jobs:
7373

7474
- name: Testing...
7575
run: |
76-
make command-global
76+
npm run test-unsafe test/jest/global.test.js

.github/workflows/install.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,4 +73,4 @@ jobs:
7373

7474
- name: Testing...
7575
run: |
76-
make command-install
76+
npm run test-unsafe test/jest/install.test.js

.github/workflows/local.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,4 +73,4 @@ jobs:
7373

7474
- name: Testing...
7575
run: |
76-
make command-local
76+
npm run test-unsafe test/jest/local.test.js

.github/workflows/options.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,4 +52,4 @@ jobs:
5252

5353
- name: Testing...
5454
run: |
55-
make test-options
55+
npm run test-unsafe test/jest/options.test.js

0 commit comments

Comments
 (0)