https://github.com/filipoliko/node-pre-gyp-test
https://github.com/filipoliko/node-pre-gyp-test
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/filipoliko/node-pre-gyp-test
- Owner: Filipoliko
- Created: 2020-05-19T14:49:45.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2020-05-20T10:38:41.000Z (about 6 years ago)
- Last Synced: 2025-02-10T13:22:04.338Z (over 1 year ago)
- Language: Shell
- Size: 1000 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Test Execution
Simply run following command.
```bash
./test.sh
```
Or run build commands one by one.
```bash
# This build should pass
bash -c "cd with-request && docker build -f ../Dockerfile ."
# This build should fail
bash -c "cd without-request && docker build -f ../Dockerfile ."
```
Or try installing the dependencies locally without docker. Note that the bug seems to appear only with Node 14.
```bash
bash -c "cd with-request && npm i";
bash -c "cd without-request && npm i";
```