Skip to content

Commit

Permalink
Nits
Browse files Browse the repository at this point in the history
  • Loading branch information
irskep committed Aug 27, 2024
1 parent 263c97f commit c82a445
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/tests-node.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,17 @@ name: Run tests (Node)

on: push

concurrency:
group: "tests-node"
cancel-in-progress: false

jobs:
build:
runs-on: ubuntu-latest

strategy:
matrix:
node-version: [18.x, 20.x]
node-version: [18.x, 20.x, 22.x]

steps:
- name: Checkout code
Expand Down
4 changes: 1 addition & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,18 +3,16 @@ name: Run tests (Bun)

on: push

# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read

# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
concurrency:
group: "tests"
group: "tests-bun"
cancel-in-progress: false

jobs:
# Single deploy job since we're just deploying
tests:
runs-on: ubuntu-latest
steps:
Expand Down
Binary file modified bun.lockb
Binary file not shown.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"prepublish": "tsc",
"scripts": {
"build": "npx tsc",
"test": "tsc && NODE_OPTIONS=\"--experimental-vm-modules\" jest",
"test": "NODE_OPTIONS=\"--experimental-vm-modules\" jest",
"djockey": "npx tsc && node dist/cli.js"
},
"dependencies": {
Expand Down

0 comments on commit c82a445

Please sign in to comment.