Skip to content

Commit

Permalink
Merge pull request #661 from swrlab/dev/deps-nov
Browse files Browse the repository at this point in the history
chore: update dependencies
  • Loading branch information
frytg authored Nov 18, 2024
2 parents 5d236c0 + 5ee1b06 commit 59c91f2
Show file tree
Hide file tree
Showing 6 changed files with 24 additions and 4,416 deletions.
20 changes: 14 additions & 6 deletions .github/workflows/pull.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
test:
needs: security
name: Run Mocha Tests
name: Run Tests
runs-on: ubuntu-latest
steps:
- name: 👀 Checkout Code
Expand All @@ -29,11 +29,19 @@ jobs:
with:
node-version: ${{ env.NODE_VERSION }}

- name: 📦 Install Yarn
run: corepack enable && yarn set version stable
- name: 🛠 Setup Bun
uses: oven-sh/setup-bun@v2
with:
bun-version: latest

- name: 📦 Install Dependencies
run: yarn install
run: bun install

- name: 🧪 Run Lint
run: bun run lint

- name: 🧪 Run Tests (in Bun)
run: bun run test

- name: 🧪 Run Tests
run: yarn lint && yarn test
- name: 🧪 Run Tests (in Node)
run: npm run test
35 changes: 0 additions & 35 deletions .github/workflows/push.yml

This file was deleted.

4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ by [**SWR Audio Lab**](https://lab.swr.de/)

## Changelog

- 2024-11-18 - v2.0.3

- chore: update dependencies

- 2024-10-24 - v2.0.2

- chore: fix node-crc dependency
Expand Down
Binary file added bun.lockb
Binary file not shown.
13 changes: 6 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@swrlab/utils",
"version": "2.0.2",
"version": "2.0.3",
"description": "Wrapping common SWR Audio Lab utils",
"repository": {
"type": "git",
Expand All @@ -18,24 +18,23 @@
"reinstall": "rm -rf node_modules && rm yarn.lock && touch yarn.lock && yarn"
},
"dependencies": {
"@google-cloud/storage": "^7.13.0",
"@google-cloud/storage": "^7.14.0",
"abort-controller": "^3.0.0",
"luxon": "3.5.0",
"node-crc": "https://github.com/swrlab/node-crc#v2.1.0",
"undici": "6.20.1"
"undici": "6.21.0"
},
"devDependencies": {
"@swrlab/style-guide": "https://github.com/swrlab/style-guide.git",
"@swrlab/style-guide": "^1.0.3",
"chai": "4.4.1",
"dotenv": "^16.4.5",
"eslint": "^9.13.0",
"eslint": "^9.15.0",
"eslint-plugin-json": "^4.0.1",
"mocha": "^10.7.3",
"mocha": "^10.8.2",
"prettier": "^3.3.3"
},
"engines": {
"node": ">=20"
},
"packageManager": "[email protected]",
"prettier": "@swrlab/style-guide/prettier"
}
Loading

0 comments on commit 59c91f2

Please sign in to comment.