Skip to content

Commit

Permalink
Bump ava from 5.3.1 to 6.1.1 (#190)
Browse files Browse the repository at this point in the history
* Bump ava from 5.3.1 to 6.1.1

Bumps [ava](https://github.com/avajs/ava) from 5.3.1 to 6.1.1.
- [Release notes](https://github.com/avajs/ava/releases)
- [Commits](avajs/ava@v5.3.1...v6.1.1)

---
updated-dependencies:
- dependency-name: ava
  dependency-type: direct:development
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>

* Fix GitHub Actions Workflow

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Stefan Zweifel <stefan@stefanzweifel.dev>
  • Loading branch information
dependabot[bot] and stefanzweifel committed Feb 20, 2024
1 parent 82cf5a5 commit 5c6aed6
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 17 deletions.
31 changes: 15 additions & 16 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,25 +3,24 @@ name: tests
on: push

jobs:
tests:
runs-on: ubuntu-latest
tests:
runs-on: ubuntu-latest

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

name: Node ${{ matrix.node-version }}
name: Node ${{ matrix.node-version }}

steps:
- uses: actions/checkout@v4
steps:
- uses: actions/checkout@v4

- uses: actions/setup-node@v4.0.1
with:
node-version: ${{ matrix.node-version }}
- uses: actions/setup-node@v4.0.1
with:
node-version: ${{ matrix.node-version }}

- name: Install testing dependencies
run: yarn install

- name: Run Tests
run: yarn test
- name: Install testing dependencies
run: npm install

- name: Run Tests
run: npm test
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"devDependencies": {
"@babel/preset-env": "^7.2.3",
"@babel/register": "^7.0.0",
"ava": "^5.1.1",
"ava": "^6.1.1",
"eslint": "^8.32.0",
"nyc": "^15.0.0",
"prettier": "3.2.4",
Expand Down

0 comments on commit 5c6aed6

Please sign in to comment.