Skip to content

Commit

Permalink
Merge PR #776 from 'NetOpWibby/patch-1'
Browse files Browse the repository at this point in the history
  • Loading branch information
pinheadmz committed Nov 11, 2022
2 parents 395878a + 8f062c3 commit 9cf8cb8
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
node: [12.x, 14.x, 16.x, 18.x]
node: [14.x, 16.x, 18.x]

steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ npm run build-docs # also defined in package.json
## Testing

[bmocha](https://www.npmjs.com/package/bmocha) will be installed as a
"developer dependency" if installed without the `--production` flag. The
"developer dependency" if installed without the `--omit=dev` flag. The
complete built-in testing suite can be run with the command:

```
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ COPY package.json /opt/hsd
# Install build dependencies and compile.
FROM base AS build
RUN apk add --no-cache g++ gcc make python3
RUN npm install --production
RUN npm install --omit=dev

FROM base
ENV PATH="${PATH}:/opt/hsd/bin:/opt/hsd/node_modules/.bin"
Expand Down
2 changes: 1 addition & 1 deletion docs/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ keys. You can get keys following [Security](../SECURITY.md) document.
```
git clone --depth 1 --branch latest https://github.com/handshake-org/hsd.git
cd hsd
npm install --production
npm install --omit=dev
# run full node in foreground with default configuration
./bin/hsd
```
Expand Down
2 changes: 1 addition & 1 deletion test/net-lookup-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ const main = Network.get('main');

const notAHost = 'not-a-domain.not-a-domain';

describe('Lookup', function() {
describe.skip('Lookup', function() {
this.timeout(10000);
it('should lookup seed', async () => {
for (const host of main.seeds) {
Expand Down

0 comments on commit 9cf8cb8

Please sign in to comment.