Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
gatsby-plugin-argos
Advanced tools
Push your gatsby screenshots to Argos, and check for visual regression before releasing.
If you already have a screenshots available:
npm install --save-dev gatsby-plugin-argos
If you don't have screenshots available:
npm install --save-dev gatsby-plugin-argos gatsby-plugin-screenshot
Just add the plugin to the plugins array in your gatsby-config.js
.
Here's a travis example with available screenshots:
// in your gatsby-config.js
module.exports = {
plugins: [
...(process.env.CI
? [
{
resolve: "gatsby-plugin-argos",
options: {
branch: process.env.TRAVIS_BRANCH,
commit: process.env.TRAVIS_COMMIT,
dir: "./where-your-screenshots-are",
token: process.env.ARGOS_TOKEN,
},
},
]
: []),
],
};
Here's a travis example without available screenshots:
// in your gatsby-config.js
module.exports = {
plugins: [
...(process.env.CI
? [
{
resolve: "gatsby-plugin-argos",
options: {
branch: process.env.TRAVIS_BRANCH,
commit: process.env.TRAVIS_COMMIT,
token: process.env.ARGOS_TOKEN,
},
},
]
: []),
],
};
You can also override gatsby-plugin-screenshot options if needed:
// in your gatsby-config.js
module.exports = {
plugins: [
...(process.env.CI
? [
{
resolve: "gatsby-plugin-argos",
options: {
branch: process.env.TRAVIS_BRANCH,
browser: {
args: [
"--no-sandbox",
"--disable-setuid-sandbox",
"--start-fullscreen",
],
},
commit: process.env.TRAVIS_COMMIT,
dir: "./screenshots",
port: 8000,
token: process.env.ARGOS_TOKEN,
},
},
]
: []),
],
};
FAQs
Push your Gatsby screenshots to Argos CI.
The npm package gatsby-plugin-argos receives a total of 1 weekly downloads. As such, gatsby-plugin-argos popularity was classified as not popular.
We found that gatsby-plugin-argos demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.