Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,17 @@ name: Build
on:
push:
branches: [master]
pull_request_target:
pull_request:
branches: ['*']
types: [opened, synchronize]
# types: [opened, synchronize]

jobs:
build:
runs-on: ubuntu-latest

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

steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright 2022 Dmitry Shirokov
Copyright 2025 Dmitry Shirokov

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
},
"homepage": "https://github.com/runk/node-geolite2#readme",
"dependencies": {
"node-fetch": "^3.0.0",
"node-fetch": "^2.7.0",
"tar": "^7.0.0"
},
"devDependencies": {
Expand Down
1 change: 1 addition & 0 deletions scripts/postinstall.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ const zlib = require('zlib');
const tar = require('tar');
const path = require('path');
const fetch = require('node-fetch');

const { getAccountId, getLicense, getSelectedDbs } = require('../utils');

let licenseKey;
Expand Down
Loading