-
-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
feat: Add test #96
Merged
Merged
feat: Add test #96
Changes from all commits
Commits
Show all changes
73 commits
Select commit
Hold shift + click to select a range
781f58e
feat: Add test
jackton1 30cb8d6
Update test.yml
jackton1 6c76ea1
Update test.yml
jackton1 b71487a
Merge branch 'main' into feat/add-test
jackton1 6ebcbb0
Merge branch 'main' into feat/add-test
jackton1 2ebe136
Updated test
jackton1 0bcbfcc
Updated action.yml
jackton1 236bc02
Updated action.yml
jackton1 9c78202
Updated action.yml
jackton1 ef4d8e8
Updated the action.yml
jackton1 418af68
Fixed error with image
jackton1 84b58e0
Updated Dockerfile and action.yml
jackton1 5917df0
Updated Dockerfile
jackton1 cf26167
Updated if statement
jackton1 c9bbffd
Updated if statement
jackton1 9a3a4ff
Updated if statement
jackton1 a9f0c0b
Updated if statement
jackton1 cee983a
Updated if statement
jackton1 6914e0c
Updated if statement
jackton1 6db5095
Updated if statement
jackton1 6332b37
Updated if statement
jackton1 06d5c92
Updated if statement
jackton1 f5ae4d8
Updated if statement
jackton1 8c87a0c
Updated to use image
jackton1 1749205
Updated to use image
jackton1 d449203
Updated to use image
jackton1 599a6d5
Updated dockerfile
jackton1 2ea9719
Remove unused code
jackton1 dcb098e
Remove unused code
jackton1 5d5b2eb
Updated dockerfile
jackton1 1c4b660
Updated dockerfile
jackton1 0ba8dd0
Updated action.yml
jackton1 c07cf6c
Updated action.yml
jackton1 9499b46
Updated dockerfile
jackton1 28b50b0
Updated action.yml
jackton1 ea6c132
Updated action.yml
jackton1 16ca4ab
Updated action.yml
jackton1 5580077
Updated dockerfile
jackton1 6d45b66
Updated dockerfile
jackton1 657d8c4
Updated action.yml
jackton1 e9db75c
Updated action.yml
jackton1 0287ee9
Updated test
jackton1 656f800
Updated test
jackton1 371e8c9
Updated test
jackton1 402d681
Updated test
jackton1 e16fee1
Updated test
jackton1 f01fcb1
Updated action
jackton1 5cf718c
Updated action
jackton1 2c4e9b6
Updated action
jackton1 2eb893c
Updated action
jackton1 0a84545
Updated action
jackton1 a123e5f
Updated action
jackton1 6bf0253
Updated action
jackton1 d3bf508
Updated action
jackton1 b265ea1
Updated action
jackton1 6284664
Updated action
jackton1 413d623
Updated action
jackton1 9162185
Updated action
jackton1 8ce54a4
Updated action
jackton1 972b0c8
Updated action
jackton1 31e50c3
Updated action
jackton1 b6bc6c4
Updated action
jackton1 58fcd25
Updated the test
jackton1 d44b604
Updated the test
jackton1 1810a76
Updated the test
jackton1 2dfc23a
Updated the test
jackton1 caf5751
Updated README
jackton1 f3a148d
Removed unused code
jackton1 aba70f5
Removed unused code
jackton1 e94ba5e
Updated README.md
jackton1 d5d8db7
Updated action.yml
jackton1 ee94fb4
Updated action.yml
jackton1 7500a6a
Updated the HOME path
jackton1 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,5 @@ | ||
.idea/ | ||
.envrc | ||
|
||
node_modules | ||
|
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
const puppeteer = require('puppeteer'); | ||
|
||
(async () => { | ||
const browser = await puppeteer.launch(); | ||
|
||
const page = await browser.newPage(); | ||
Check notice Code scanning / Jshint (reported by Codacy) Prohibits the use of __iterator__ property due to compatibility issues
'const' is available in ES6 (use 'esversion: 6') or Mozilla JS extensions (use moz).
|
||
await page.goto('https://news.ycombinator.com', { | ||
waitUntil: 'networkidle2', | ||
}); | ||
await page.pdf({ path: 'test.pdf', format: 'a4' }); | ||
|
||
await browser.close(); | ||
})(); |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Check notice
Code scanning / Jshint (reported by Codacy)
Prohibits the use of __iterator__ property due to compatibility issues