Skip to content

Commit 3a44e32

Browse files
authored
Merge branch 'develop' into deepMap-2
2 parents 488628c + d394302 commit 3a44e32

27 files changed

+1811
-1021
lines changed

.github/workflows/hyperexecute.yml

Lines changed: 0 additions & 37 deletions
This file was deleted.

.github/workflows/lambdatest.yaml

Lines changed: 21 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,27 @@
1-
name: LambdaTest (HyperExecute)
1+
name: Browser testing on Lambdatest
2+
23
on:
34
push:
45
branches:
56
- '*'
6-
tags:
77

88
jobs:
9-
HyperExecute-Playwright:
10-
runs-on: windows-latest
11-
timeout-minutes: 15
12-
strategy:
13-
fail-fast: false
14-
matrix:
15-
os: [windows-latest]
16-
steps:
17-
- name: Checkout sources
18-
uses: actions/checkout@v4
19-
20-
- name: Starting CI testing
21-
shell: bash
22-
env:
23-
CI: true
24-
LT_USERNAME: ${{ secrets.LT_USERNAME }}
25-
LT_ACCESS_KEY: ${{ secrets.LT_ACCESS_KEY }}
26-
run: |
27-
echo "STEP 1 ) Download project"
28-
git clone https://github.com/josdejong/mathjs
29-
cd mathjs
30-
echo "STEP 2) Download HyperExecute"
31-
curl https://downloads.lambdatest.com/hyperexecute/windows/hyperexecute.exe -o hyperexecute.exe
32-
echo "STEP 3) Run tests using HyperExecute"
33-
./hyperexecute --user $LT_USERNAME --key $LT_ACCESS_KEY --config test/browser-test-config/lambdatest-hyperexecute-config.yaml
9+
test-tunnel:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- name: Start Tunnel
13+
uses: LambdaTest/LambdaTest-tunnel-action@v2
14+
id: tunnel
15+
with:
16+
user: ${{ secrets.LT_USERNAME }}
17+
accessKey: ${{ secrets.LT_ACCESS_KEY }}
18+
- uses: actions/checkout@v4
19+
- uses: actions/setup-node@v4
20+
with:
21+
node-version: 22.x
22+
- run: npm ci
23+
- run: npm run test:lambdatest
24+
env:
25+
LT_USERNAME: ${{ secrets.LT_USERNAME }}
26+
LT_ACCESS_KEY: ${{ secrets.LT_ACCESS_KEY }}
27+

AUTHORS

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -257,6 +257,7 @@ gauravchawhan <117282267+gauravchawhan@users.noreply.github.com>
257257
Akki <63336443+Aakash-Rana@users.noreply.github.com>
258258
Neeraj Kumawat <42885320+nkumawat34@users.noreply.github.com>
259259
Emmanuel Ferdman <emmanuelferdman@gmail.com>
260-
Paul K <paul@scriptcad.com>
260+
Paul Korzhyk <paul.korzhyk@gmail.com>
261+
Francois <819179+fchu@users.noreply.github.com>
261262

262263
# Generated by tools/update-authors.js

HISTORY.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
# History
22

3-
# unpublished changes
3+
# 2024-12-11, 14.0.1
44

55
- Fix: make derivative much faster (#3322). Thanks @paulftw.
6+
- Fix: #3317 export `Fraction` type from the `fraction.js` library instead of
7+
using a custom interface (#3330). Thanks @fchu.
68

79
# 2024-11-20, 14.0.0
810

0 commit comments

Comments
 (0)