Skip to content

Commit

Permalink
ci: don't rebuild when running dev-server (pouchdb#8874)
Browse files Browse the repository at this point in the history
  • Loading branch information
alxndrsn authored Mar 17, 2024
1 parent c792a33 commit 1f58173
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bin/dev-server.js
Original file line number Diff line number Diff line change
Expand Up @@ -85,8 +85,8 @@ function watchAll() {
var filesWritten = false;

Promise.resolve().then(function () {
if (process.env.TRAVIS) {
return; // don't bother rebuilding in Travis; we already built
if (process.env.CI) {
return; // don't bother rebuilding in CI; we already built
}
return Promise.all([
rebuildPouch(),
Expand Down

0 comments on commit 1f58173

Please sign in to comment.