Questions tagged [travis-ci]

If you have any inquiries regarding the hosted continuous integration platform, feel free to ask.

Travis-CI build encountering errors, however, local tests and builds run smoothly

I'm encountering difficulties getting my unit test to pass with Travis. When running the tests locally, I don't see any errors (unit/e2e)... If you'd like to see the log file, it can be found here in the Travis build log There are numerous ...

Automating the CI/CD process using a powerful combination of GitHub, Travis, NPM, and G

Implementing continuous integration (CI) from a master branch on Github using Travis-CI to push built files onto my server feels like hitting a brick wall. This is what I am trying to achieve: Push new code to a branch on Github After tests are run and ...

Travis CI: encountering difficulties while attempting to update npm to a newer version

Attempting to update the npm version being used by Travis CI in the .travis.yml configuration file: language: node_js node_js: 0.12 before_install: npm install -g npm@latest However, after checking the logs of the Travis job, it seems that nothing has ch ...

travis: Release new package on npm when version is incremented

I currently have a package published on npm with automation scripts handled by TravisCI. Now, I am looking to automatically publish the newest version of my package on npm whenever there is a version update. For example, if my package is at version 1.1.0 ...

Using surge.sh to deploy a Vue project

All day I've been attempting to deploy my Vue project on Surge.sh. The project is built using the webpack-simple template. Strangely, manual deployment from my CLI works fine. However, when I push it to GitHub and try deploying it from Travis CI, it fails ...

Travis is experiencing issues with retrieving the API key after logging in with npm

Referencing the information found at , it is stated that an API key should be visible after executing npm login. However, upon performing npm login (or npm adduser) and checking with cat .npmrc, I am unable to locate any indication of an API key. I would ...

Travis encounters issues deploying Firebase with a script due to an unsupported environment and the fsevents Darwin error

Currently in the process of upgrading my Travis environment to node 20, where I am running a script that deploys Firebase functions. Below is my .travis.yml file: ... install: bash $HOME/build/ChangEdApps/changed-javascript/backend/shellScripts/travis-scr ...

Error message: In ReactJS, Firebase is requesting the "projectId" app configuration value which has not been provided, resulting in the error code installations/missing-app-config-values

When I deploy my Firebase React app using the command line, everything works fine. However, I encounter an error when deploying it with Travis. https://i.stack.imgur.com/372a3.png Here are my configuration files. .travis.yml language: node_js node_js: ...

Is there a way to integrate node.js updates and incorporate grunt/bower into a Python project within the Travis CI environment?

When setting up my project, I encountered a challenge with using grunt because Travis CI only had node.js version 0.6 in the python VM, while I needed node.js >= 0.8 for grunt. Despite trying to download and insert the latest binaries into the PATH, I stru ...

Travis build unsuccessful due to version inconsistencies

I am facing an issue where my locally working application is failing to build on TravisCI. After some research, I realized that I used "latest" as the version for dependencies in my package.json file. :rekolekcje-webapp:npmInstallnpm WARN deprecated <a ...

When executing in the local development environment, Selenium tests encounter errors and reach the error page with a connection issue (about:neterror?e=connection). However, the same tests fail

Encountering a perplexing issue with a Selenium test that fails in Travis CI but runs smoothly in the local development environment. The error message indicates that Firefox is unable to establish a connection to the server at localhost. To troubleshoot th ...