Skip to content

Commit

Permalink
chore(deps-dev): bump tap from 16.3.9 to 18.4.3 (#15)
Browse files Browse the repository at this point in the history
* chore(deps-dev): bump tap from 16.3.9 to 18.4.3

Bumps [tap](https://github.com/tapjs/tapjs) from 16.3.9 to 18.4.3.
- [Release notes](https://github.com/tapjs/tapjs/releases)
- [Commits](https://github.com/tapjs/tapjs/compare/v16.3.9...tap@18.4.3)

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

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

* break: drop node 14

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Manuel Spigolon <behemoth89@gmail.com>
  • Loading branch information
dependabot[bot] and Eomm committed Oct 7, 2023
1 parent 83ec3b1 commit 1f1afdc
Show file tree
Hide file tree
Showing 3 changed files with 66 additions and 6 deletions.
65 changes: 62 additions & 3 deletions .github/workflows/ci.yml
Expand Up @@ -11,7 +11,66 @@ on:
- '*.md'

jobs:
linter:
name: Lint Code
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Check out repo
uses: actions/checkout@v3
with:
persist-credentials: false

- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: lts/*

- name: Install dependencies
run: npm i --ignore-scripts

- name: Lint code
run: npm run lint

test:
uses: fastify/workflows/.github/workflows/plugins-ci.yml@v3
with:
lint: true
name: Test
runs-on: ${{ matrix.os }}
permissions:
contents: read
strategy:
matrix:
node-version: [16, 18, 20]
os: [macos-latest, ubuntu-latest, windows-latest]
steps:
- name: Check out repo
uses: actions/checkout@v3
with:
persist-credentials: false

- name: Setup Node ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}

- name: Install dependencies
run: npm i --ignore-scripts

- name: Run tests
run: npm test

automerge:
name: Automerge Dependabot PRs
if: >
github.event_name == 'pull_request' &&
github.event.pull_request.user.login == 'dependabot[bot]'
needs: test
permissions:
pull-requests: write
contents: write
runs-on: ubuntu-latest
steps:
- uses: fastify/github-action-merge-dependabot@v3
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
target: major
1 change: 1 addition & 0 deletions .gitignore
Expand Up @@ -64,3 +64,4 @@ package-lock.json

.coveralls.yml
.vscode/
.tap/
6 changes: 3 additions & 3 deletions package.json
Expand Up @@ -6,14 +6,14 @@
"scripts": {
"lint": "standard",
"lint:fix": "standard --fix",
"test": "tap test/**/*.test.js"
"test": "tap run test/*.test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Eomm/choose-it.git"
},
"engines": {
"node": ">=6"
"node": ">=16"
},
"keywords": [
"resource",
Expand All @@ -34,7 +34,7 @@
"devDependencies": {
"pre-commit": "^1.2.2",
"standard": "^17.0.0",
"tap": "^16.3.0"
"tap": "^18.4.3"
},
"dependencies": {
"archy": "^1.0.0"
Expand Down

0 comments on commit 1f1afdc

Please sign in to comment.