Skip to content
Open
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
7 changes: 3 additions & 4 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,12 @@ jobs:
- name: Install libvips
run: sudo apt-get install libvips
- uses: actions/checkout@v2
- name: Setup Node 18
- name: Setup Node 20
uses: actions/setup-node@v2
with:
node-version: '18'
node-version: '20'
- name: Install dependencies
run: |
npm i --force --unsafe-perm
run: npm ci --legacy-peer-deps --unsafe-perm
- name: Force installing sharp
run: npm install --ignore-scripts=false --verbose sharp@0.30.7 --force --unsafe-perm
- name: 'Create env file'
Expand Down
7 changes: 3 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,12 @@ jobs:
- name: Install libvips
run: sudo apt-get install libvips
- uses: actions/checkout@v2
- name: Setup Node 18
- name: Setup Node 20
uses: actions/setup-node@v2
with:
node-version: '18'
node-version: '20'
- name: Install dependencies
run: |
rm -rf node_modules && npm i --force --unsafe-perm
run: npm ci --legacy-peer-deps --unsafe-perm
- name: Force installing sharp
run: npm install --ignore-scripts=false --verbose sharp@0.30.7 --force --unsafe-perm
- name: 'Create env file'
Expand Down
8 changes: 3 additions & 5 deletions .github/workflows/staging-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,12 @@ jobs:
- name: Install libvips
run: sudo apt-get install libvips
- uses: actions/checkout@v2
- name: Setup Node 18
- name: Setup Node 20
uses: actions/setup-node@v2
with:
node-version: '18'
node-version: '20'
- name: Install dependencies
run: |
rm -rf .cache node_modules
npm i --force --unsafe-perm
run: npm ci --legacy-peer-deps --unsafe-perm
- name: Force installing sharp
run: npm install --ignore-scripts=false --verbose sharp@0.30.7 --force --unsafe-perm
- name: 'Create env file'
Expand Down
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,3 @@ public
.idea/*
*.iml
.DS_Store
package-lock.json
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ If you are new to Testsigma or want to try it quickly, create an account in our

## Contributing


We love our contributors! If you'd like to contribute anything from updating an existing tutorial to adding new tutorials, start here—

- 📖 Read our [Contribution Guide](CONTRIBUTING.md)
Expand Down
13 changes: 6 additions & 7 deletions gatsby-config.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,15 @@ module.exports = {
"gatsby-plugin-postcss",
"gatsby-plugin-sass",
"gatsby-plugin-image",
"gatsby-transformer-remark",
"gatsby-plugin-sharp",
"gatsby-transformer-sharp",
'gatsby-plugin-react-helmet',
{
resolve: 'gatsby-plugin-env-variables',
options: {
allowList: ['TYPESENSE_HOST', 'TYPESENSE_PORT', 'TYPESENSE_PROTOCOL', 'TYPESENSE_API_KEY', "TYPESENSE_SEARCH_API_KEY", "TYPESENSE_COLLECTION"],
},
},
{
resolve: `gatsby-plugin-s3`,
options: {
Expand Down Expand Up @@ -104,12 +109,6 @@ module.exports = {
},
},
},
{
resolve: 'gatsby-plugin-env-variables',
options: {
allowList: ['TYPESENSE_HOST', 'TYPESENSE_PORT', 'TYPESENSE_PROTOCOL', 'TYPESENSE_API_KEY', "TYPESENSE_SEARCH_API_KEY", "TYPESENSE_COLLECTION"],
},
}
],
},
}
Expand Down
Loading
Loading