File tree 6 files changed +24
-4416
lines changed
6 files changed +24
-4416
lines changed Original file line number Diff line number Diff line change 18
18
19
19
test :
20
20
needs : security
21
- name : Run Mocha Tests
21
+ name : Run Tests
22
22
runs-on : ubuntu-latest
23
23
steps :
24
24
- name : 👀 Checkout Code
@@ -29,11 +29,19 @@ jobs:
29
29
with :
30
30
node-version : ${{ env.NODE_VERSION }}
31
31
32
- - name : 📦 Install Yarn
33
- run : corepack enable && yarn set version stable
32
+ - name : 🛠 Setup Bun
33
+ uses : oven-sh/setup-bun@v2
34
+ with :
35
+ bun-version : latest
34
36
35
37
- name : 📦 Install Dependencies
36
- run : yarn install
38
+ run : bun install
39
+
40
+ - name : 🧪 Run Lint
41
+ run : bun run lint
42
+
43
+ - name : 🧪 Run Tests (in Bun)
44
+ run : bun run test
37
45
38
- - name : 🧪 Run Tests
39
- run : yarn lint && yarn test
46
+ - name : 🧪 Run Tests (in Node)
47
+ run : npm run test
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -4,6 +4,10 @@ by [**SWR Audio Lab**](https://lab.swr.de/)
4
4
5
5
## Changelog
6
6
7
+ - 2024-11-18 - v2.0.3
8
+
9
+ - chore: update dependencies
10
+
7
11
- 2024-10-24 - v2.0.2
8
12
9
13
- chore: fix node-crc dependency
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @swrlab/utils" ,
3
- "version" : " 2.0.2 " ,
3
+ "version" : " 2.0.3 " ,
4
4
"description" : " Wrapping common SWR Audio Lab utils" ,
5
5
"repository" : {
6
6
"type" : " git" ,
18
18
"reinstall" : " rm -rf node_modules && rm yarn.lock && touch yarn.lock && yarn"
19
19
},
20
20
"dependencies" : {
21
- "@google-cloud/storage" : " ^7.13 .0" ,
21
+ "@google-cloud/storage" : " ^7.14 .0" ,
22
22
"abort-controller" : " ^3.0.0" ,
23
23
"luxon" : " 3.5.0" ,
24
24
"node-crc" : " https://github.com/swrlab/node-crc#v2.1.0" ,
25
- "undici" : " 6.20.1 "
25
+ "undici" : " 6.21.0 "
26
26
},
27
27
"devDependencies" : {
28
- "@swrlab/style-guide" : " https://github.com/swrlab/style-guide.git " ,
28
+ "@swrlab/style-guide" : " ^1.0.3 " ,
29
29
"chai" : " 4.4.1" ,
30
30
"dotenv" : " ^16.4.5" ,
31
- "eslint" : " ^9.13 .0" ,
31
+ "eslint" : " ^9.15 .0" ,
32
32
"eslint-plugin-json" : " ^4.0.1" ,
33
- "mocha" : " ^10.7.3 " ,
33
+ "mocha" : " ^10.8.2 " ,
34
34
"prettier" : " ^3.3.3"
35
35
},
36
36
"engines" : {
37
37
"node" : " >=20"
38
38
},
39
- "packageManager" : " yarn@4.2.2" ,
40
39
"prettier" : " @swrlab/style-guide/prettier"
41
40
}
You can’t perform that action at this time.
0 commit comments