Error: Maximum call stack size exceeded when playing animations

Try

player.anims.play(this.playerAtlas + '-jump');
player.anims.chain(this.playerAtlas + '-run');

or

player.anims.play(this.playerAtlas + '-jump');
player.once('animationcomplete', () => {
  player.anims.play(this.playerAtlas + '-run');
});