Skip to content

Commit

Permalink
Updating dependencies (#130)
Browse files Browse the repository at this point in the history
- Updating dependencies
- Preparing to release v3.0.0
  • Loading branch information
manchicken authored Oct 24, 2024
1 parent 9cf21f3 commit 2f1839e
Show file tree
Hide file tree
Showing 8 changed files with 463 additions and 343 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/v2-automated-testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
run: echo "date=$(date +'%Y-%m-%d -- %s')" >> $GITHUB_OUTPUT

- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Run CI Tests
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/v2.1-automated-testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
run: echo "date=$(date +'%Y-%m-%d -- %s')" >> $GITHUB_OUTPUT

- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Run CI Tests
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/v2.2-automated-testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
run: echo "date=$(date +'%Y-%m-%d -- %s')" >> $GITHUB_OUTPUT

- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Run CI Tests
env:
Expand Down
1 change: 1 addition & 0 deletions __tests__/lib/input-expander.test.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,7 @@ describe('input-expander.cjs - utilities', () => {
{ value: 0, outcome: false },
{ value: 1, outcome: false },
{ value: { a: undefined }, outcome: false },
{ value: '', outcome: true },
])('#isNothing($value) should be $outcome', ({ value, outcome }) => {
expect(isNothing(value)).toBe(outcome)
})
Expand Down
Loading

0 comments on commit 2f1839e

Please sign in to comment.