Skip to content

Commit

Permalink
chore: upgrade devDependencies (#256)
Browse files Browse the repository at this point in the history
* chore: update versions in workflows

* chore: update tap

* chore: update devDependencies
  • Loading branch information
wkillerud committed Mar 1, 2024
1 parent e9aea8f commit 5afcaa2
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 17 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 16.x
node-version: 20
- name: npm install
run: |
npm install
Expand All @@ -33,11 +33,11 @@ jobs:
needs: [test]
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 16.x
node-version: 20
- name: npm install
run: |
npm install
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macOS-latest, windows-latest]
node-version: [14.x, 16.x]
node-version: [18, 20]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: npm install
Expand Down
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,5 @@ tmp/**/*
*.log
coverage
.vscode
.nyc_output/
.nyc_output/
.tap/
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"lib"
],
"scripts": {
"test": "tap --no-check-coverage",
"test": "tap --disable-coverage --allow-empty-coverage",
"test:snapshots:update": "tap test/**/*.js --snapshot",
"lint:fix": "eslint --fix .",
"lint": "eslint ."
Expand All @@ -38,12 +38,12 @@
"@semantic-release/git": "10.0.1",
"eslint": "8.57.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-prettier": "8.10.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-prettier": "4.2.1",
"prettier": "2.8.8",
"semantic-release": "19.0.5",
"tap": "16.3.10",
"eslint-plugin-prettier": "5.1.3",
"prettier": "3.2.5",
"semantic-release": "23.0.2",
"tap": "18.7.0",
"unique-slug": "2.0.2"
}
}
2 changes: 1 addition & 1 deletion tap-snapshots/test/main.js.test.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

'use strict'

exports[`test/main.js TAP Sink() - .metrics - all successfull operations > metrics should match snapshot 1`] = `
exports[`test/main.js > TAP > Sink() - .metrics - all successfull operations > metrics should match snapshot 1`] = `
[
{
"name": "eik_core_sink_gcs",
Expand Down

0 comments on commit 5afcaa2

Please sign in to comment.